         .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 82px;
            background: #1A241E;
            padding: 100px 0;
            text-align: center;
            color: #FFFFFF;
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 56px;
            font-weight: 400;
            margin-bottom: 20px;
            font-style: italic;
        }

        .hero-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 12px;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.7;
        }

        /* 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;
            margin-top: 60px;
            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: 400px;
            background: #E5E5E5;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
        }

        /* 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-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;
        }
        
        .view-link {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            height: 38px; /* Locked height */
            background: rgba(45, 90, 61, 0.1);
            color: #2D5A3D;
            text-decoration: none;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .view-link:hover {
            background: #2D5A3D;
            color: #FFFFFF;
            transform: translateX(5px);
        }

        .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;
        }
        
        .research-actions {
            display: flex;
            align-items: center; /* Vertical center alignment */
            gap: 12px;
            margin-top: 15px;
        }
        
        /* Elegant Cite Button */
        .cite-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: transparent;
            color: #666;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cite-btn:hover {
            background: #f8f8f8;
            border-color: #2D5A3D;
            color: #2D5A3D;
        }
        
        .cite-icon-btn {
            width: 38px;  /* Matches view-link height */
            height: 38px; /* Matches view-link height */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #999;
            border: 1px solid #eee;
            border-radius: 50%; /* Makes it a clean circle */
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0; /* Clear default button padding */
        }
        
        .cite-icon-btn:hover {
            background: #f8f8f8;
            color: #2D5A3D;
            border-color: #2D5A3D;
            transform: rotate(15deg); /* Subtle 'academic' flair on hover */
        }
        
        .cite-icon-btn svg {
            display: block; /* Prevents tiny alignment shifts */
        }
        
        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }
        
        .modal-overlay.active { display: flex; }
        
        /* Modal Box */
        .modal-content {
            background: #fff;
            width: 90%;
            max-width: 600px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            overflow: hidden;
            animation: modalSlide 0.3s ease-out;
        }
        
        @keyframes modalSlide {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            padding: 20px 24px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* --- Modal Footer Styling --- */
        .modal-footer {
            padding: 16px 24px;
            background: #fcfcfc;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: center; 
            gap: 12px;
        }
        
        .modal-header h3 { font-family: 'Playfair Display', serif; color: #1A241E; margin: 0; }
        
        .close-modal { background: none; border: none; font-size: 28px; cursor: pointer; color: #999; }
        
        .modal-body { padding: 24px; }
        
        .cite-row {
            display: flex;
            margin-bottom: 20px;
            gap: 15px;
        }
        
        .cite-label {
            flex: 0 0 80px;
            font-weight: 700;
            color: #2D5A3D;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cite-text {
            flex: 1;
            font-size: 14px;
            color: #444;
            line-height: 1.6;
            background: #fafafa;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
            word-break: break-word; /* Essential for long academic links/titles */
            user-select: all;      /* One-click highlight */
            cursor: text;
        }

        /* 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-title {
                font-size: 36px;
            }

            .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;
            }
        }