
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    /* --- Hero Section (Homepage Family Style) --- */
    .hero {
        height: 100dvh; 
        background: linear-gradient(180deg, #1A241E 0%, #0D1410 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: 0;
    }
    
    /* Background grid and orbs */
    .hero-bg { position: absolute; inset: 0; opacity: 0.3; }
    
    .hero-grid {
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(rgba(198, 168, 103, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(198, 168, 103, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
    }
    
    .hero-orb {
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(198, 168, 103, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(80px);
    }
    
    .hero-orb-1 { top: 15%; right: 10%; }
    .hero-orb-2 {
        bottom: 10%; left: 5%; width: 400px; height: 400px;
        background: radial-gradient(circle, rgba(45, 90, 61, 0.25) 0%, transparent 70%);
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 100px 40px 40px; /* EXACT HOME PADDING */
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Badge Styling */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 10px 24px; 
        background: rgba(198, 168, 103, 0.15);
        border-radius: 100px;
        border: 1px solid rgba(198, 168, 103, 0.3);
        margin-bottom: 28px;
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-badge-text {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #C6A867;
    }
    
    /* Title & Description */
    .hero-title {
        font-family: 'Playfair Display', Georgia, serif;
        /* Use the same huge size as homepage to make it look sleek */
        font-size: clamp(52px, 8vw, 100px); 
        font-weight: 400;
        color: #FFFFFF;
        line-height: 1.05; /* Tight line-height prevents the 'fat' look */
        margin-bottom: 28px;
        animation: fadeInUp 0.8s ease-out 0.2s both;
        /* Removed global font-style: italic; so it matches home */
    }
    
    .hero-title-highlight {
        font-style: italic;
        background: linear-gradient(135deg, #C6A867 0%, #E8D5A3 50%, #C6A867 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 26px;
        font-style: italic;
        color: #C6A867;
        margin-bottom: 24px;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }
    
    .hero-description {
        font-family: 'DM Sans', sans-serif;
        font-size: 18px;
        color: #A8A49C;
        line-height: 1.8;
        max-width: 700px;
        margin-bottom: 30px; 
        text-align: justify;
        text-justify: inter-word;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    /* --- Button Styling (Homepage Primary Style) --- */
    .hero-ctas {
        display: flex;
        gap: 16px;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    .btn-primary {
        padding: 20px 40px;
        background: linear-gradient(135deg, #C6A867 0%, #A88B4A 100%);
        border: none;
        border-radius: 100px;
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #1A241E;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 24px rgba(198, 168, 103, 0.4);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(198, 168, 103, 0.5);
    }
    
    /* Animation Keyframes */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: #FAFAF8;
        }

        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            color: #1A241E;
            margin-bottom: 40px;
            text-align: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 32px;
            font-weight: 500;
            color: #2D5A3D;
            margin-bottom: 20px;
        }

        .about-text p {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-text ul {
            list-style: none;
            margin-top: 24px;
        }

        .about-text li {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }

        .about-text li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #2D5A3D;
            font-weight: 700;
            font-size: 20px;
        }

        .about-image {
            width: 100%;
            height: 450px; /* Slightly taller often looks better for lab photos */
            border-radius: 16px;
            overflow: hidden; /* Ensures the image corners are rounded */
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* This prevents the photo from looking stretched */
            object-position: center;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05); /* Subtle zoom effect on hover */
        }

        /* Activity Clusters */
        .clusters-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .clusters-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .cluster-card {
            background: #FFFFFF;
            border: 2px solid #E5E5E5;
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .cluster-card:hover {
            border-color: #2D5A3D;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .cluster-icon {
            width: 80px;
            height: 80px;
            background: #2D5A3D;
            border-radius: 12px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #FFFFFF;
        }

        .cluster-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #1A241E;
            line-height: 1.4;
        }

        /* Committee Section */
        .committee-section {
            padding: 80px 0;
            background: #FAFAF8;
        }

        .committee-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .committee-card {
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .committee-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .committee-photo {
            width: 100%;
            height: 280px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
        }

        .committee-info {
            padding: 24px;
        }

        .committee-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 20px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 8px;
        }
        
        .committee-name a {
            text-decoration: none;
            color: #1A241E; /* Matches your current name color */
            transition: color 0.3s ease;
        }
        
        .committee-name a:hover {
            color: #C6A867; /* Subtle gold hover effect */
        }

        .committee-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #2D5A3D;
            margin-bottom: 12px;
        }

        .committee-org {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        /* Stakeholders Section */
        .stakeholders-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .stakeholders-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .stakeholder-item {
            background: #FAFAF8;
            border-radius: 12px;
            padding: 20px 24px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stakeholder-item:hover {
            background: #2D5A3D;
            color: #FFFFFF;
        }

        /* Research Section */
        .research-section {
            padding: 80px 0;
            background: #FAFAF8;
        }

        .research-filters {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 8px;
            display: block;
        }

        .filter-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #E5E5E5;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #1A241E;
            background: #FFFFFF;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: #2D5A3D;
        }

        .search-box {
            position: relative;
            flex: 2;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            border: 2px solid #E5E5E5;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #1A241E;
            background: #FFFFFF;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #2D5A3D;
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .research-list {
            list-style: none;
        }

        .research-item {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 28px 32px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .research-item:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transform: translateX(4px);
        }

        .research-type {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #FFFFFF;
            background: #2D5A3D;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .research-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 20px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 8px;
        }

        .research-meta {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #666;
            margin-bottom: 12px;
        }

        .research-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .gallery-image {
            width: 100%;
            height: 280px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: #FFFFFF;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero { height: auto; min-height: 100dvh; padding: 120px 24px 60px; }
            .hero-title { font-size: 42px; }
            .hero-content { align-items: center; text-align: center; }

            .about-content {
                grid-template-columns: 1fr;
            }

            .clusters-grid {
                grid-template-columns: 1fr;
            }

            .committee-grid {
                grid-template-columns: 1fr;
            }

            .stakeholders-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }