    /* --- Google Fonts --- */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&family=Lato:wght@400;700&display=swap');

    /* --- CSS Variables for Easy Theming --- */
    :root {
        --primary-gradient: linear-gradient(135deg, #124272, #003ea5);
        --accent-color: #FDB813;
        --text-dark: #2c3e50;
        --text-light: #ffffff;
        --text-body: #555;
        --bg-light: #f4f7f6;
        --card-bg: #ffffff;
        --border-color: #e8e8e8;
        --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    /* --- Base Styles --- */


    /* --- Profile Card Layout --- */
    .profile-card {
        display: grid;
        grid-template-columns: 320px 1fr;
        /* Sidebar and main content */
      
        width: 100%;
        background: var(--card-bg);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    /* --- Left Sidebar (Info & Image) --- */
    .profile-sidebar {
        background: var(--primary-gradient);
        color: var(--text-light);
        padding: 40px 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .profile-sidebar .profile-image {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 6px solid rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .profile-sidebar .name {
        font-family: 'Poppins', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .profile-sidebar .title {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.9;
        margin-bottom: 25px;
    }

    .profile-sidebar .qualifications-list {
        list-style: none;
        text-align: left;
        width: 100%;
    }

    .profile-sidebar .qualifications-list li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .profile-sidebar .qualifications-list svg {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        fill: rgba(255, 255, 255, 0.8);
        flex-shrink: 0;
    }

    /* --- Right Main Content Area --- */
    .profile-main {
        padding: 40px;
    }

    /* --- Tab Navigation --- */
    .tabs {
        display: flex;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 25px;
    }

    .tab-link {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        padding: 0 5px 15px 5px;
        margin-right: 30px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-body);
        opacity: 0.6;
        position: relative;
        transition: opacity 0.3s ease;
    }

    .tab-link:hover {
        opacity: 1;
    }

    .tab-link.active {
        opacity: 1;
        color: var(--text-dark);
        font-weight: 500;
    }

    .tab-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    /* --- Tab Content Styling --- */
    .tab-content {
        display: none;
        /* Hide content by default */
    }

    .tab-content.active {
        display: block;
        /* Show active content */
    }

    .tab-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        text-align: justify;
    }

    .tab-content p:last-child {
        margin-bottom: 0;
    }

    /* --- Message Section Specific Styling --- */
    #message blockquote {
        background-color: #f8f9fa;
        border-left: 5px solid var(--accent-color);
        padding: 25px 30px 25px 60px;
        margin: 0;
        border-radius: 8px;
        position: relative;
        font-style: italic;
        color: #444;
    }

    #message blockquote::before {
        content: '“';
        font-family: 'Poppins', sans-serif;
        position: absolute;
        left: 15px;
        top: 15px;
        font-size: 4rem;
        font-weight: 700;
        color: var(--accent-color);
        opacity: 0.5;
        line-height: 1;
    }

    #message blockquote p {
        font-style: normal;
    }


    /* --- Responsive Design --- */
    @media (max-width: 992px) {
        .profile-card {
            grid-template-columns: 1fr;
            /* Stack columns */
        }

        .profile-sidebar {
            border-radius: 20px 20px 0 0;
        }
    }

    @media (max-width: 768px) {
        body {
            padding: 1rem;
        }

        .profile-main {
            padding: 30px 25px;
        }
    }