      /* Global Styling */
      body {
        font-family: Arial, sans-serif;
        background-color: #f8f9fa;
        color: #333;
        margin-top: 70px;
        padding: 0;
    }
    
    h2 {
        font-size: 1.8em;
        margin-bottom: 0.5em;
        color: #2c3e50;
        text-align: center;
    }
    
    .highlight-blue {
        background: linear-gradient(111.3deg, rgb(74, 105, 187) 9.6%, rgb(205, 77, 204) 93.6%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    /* Section Containers */
    .grid-container3 {
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto 40px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* User Card */
    .user-card {
        display: flex;
        align-items: center;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        background: linear-gradient(to bottom right, #ffffff, #f1f1f1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .user-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    /* Profile Photo */
    .profile-photo {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #28a745;
        margin-right: 20px;
    }
    
    /* Profile Info */
    .profile-info h2 {
        font-size: 1.5em;
        margin: 0;
        color: #2c3e50;
        font-weight: bold;
    }
    
    .profile-info .location {
        color: #7f8c8d;
        font-size: 0.9em;
        margin: 5px 0 15px;
    }
    
    .profile-info .view-profile-btn {
        display: inline-block;
        padding: 8px 15px;
        background-color: #28a745;
        color: #ffffff;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .profile-info .view-profile-btn:hover {
        background-color: #218838;
    }
    
    /* Section Headings */
    h2.section-heading {
        font-size: 1.6em;
        font-weight: bold;
        color: #2c3e50;
        padding: 10px;
        text-align: center;
        background-color: #f5f5f5;
        border-radius: 8px;
        margin-top: 20px;
    }
    /* Header Styling */
    /* Header Styling */
    h4 {
        font-size: 1.5em;
        font-weight: bold;
        color: #007bff; /* Blue color for emphasis */
        text-align: center;
        padding: 10px;
        background: linear-gradient(45deg, rgba(128, 210, 204, 1), rgba(220, 240, 171, 1)); /* Gradient with logo colors */
        color: #fff;
        border-radius: 8px;
        margin: 20px 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    /* Hover effect for Headers */
    h4:hover {
        transform: translateY(-3px);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        background: linear-gradient(45deg, rgba(220, 240, 171, 1), rgba(128, 210, 204, 1)); /* Reverse gradient on hover */
    }
    
    /* Adjust color for specific header texts */
    h4:nth-of-type(1) {
        background: linear-gradient(45deg, rgba(128, 210, 204, 1), rgba(220, 240, 171, 1));
    }
    
    h4:nth-of-type(2) {
        background: linear-gradient(45deg, rgba(220, 240, 171, 1), rgba(128, 210, 204, 1));
    }
    
    h4:nth-of-type(3) {
        background: linear-gradient(45deg, rgba(128, 210, 204, 1), rgba(220, 240, 171, 1));
    }
    /* Styling the directions link container */
    .directions-icon-link {
        display: inline-block;
        background: white;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Hover effect for the link */
    .directions-icon-link:hover {
        transform: scale(1.1);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        background: linear-gradient(45deg, rgba(220, 240, 171, 1), rgba(128, 210, 204, 1)); /* Reverse gradient */
    }
    
    /* Styling the image inside the link */
    .directions-icon-link img {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }
    
    /* Hover effect for the image */
    .directions-icon-link:hover img {
        transform: rotate(15deg);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .user-card {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    
        .profile-photo {
            margin-bottom: 10px;
        }
    
        .profile-info h2 {
            font-size: 1.4em;
        }
    }
    