     
        
        /* Particles background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 0;
            /* Updated to blend with new background */
            background: radial-gradient(ellipse at center, rgba(8, 106, 59, 0.3) 0%, rgba(10, 60, 37, 0.2) 50%, transparent 100%);
        }
        
        /* Edge-to-edge hero with advanced effects */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 40px;
            z-index: 2;
        }
        
        /* Advanced gradient background */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(8, 106, 59, 0.5) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 204, 0, 0.3) 0%, transparent 50%),
                linear-gradient(45deg, #086a3b 0%, #0a8a4c 30%, #FFCC00 70%, #0a3c25 100%);
            background-size: 400% 400%;
            animation: gradientBG 20s ease infinite;
            z-index: 1;
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }
        
        /* Animated mesh grid overlay for hero */
        .hero-mesh {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 204, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 204, 0, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 2;
            animation: meshMove 20s linear infinite;
        }
        
        @keyframes meshMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* INTERCONNECTED NETWORK for HERO SECTION */
        .hero-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            opacity: 0.15;
        }
        
        /* Floating 3D shapes */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            z-index: 3;
            filter: blur(1px);
            animation: floatEnhanced 25s ease-in-out infinite;
            mix-blend-mode: screen;
        }
        
        .shape-1 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #FFCC00 0%, #086a3b 50%, transparent 70%);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            opacity: 0.6;
        }
        
        .shape-2 {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, #086a3b 0%, #FFCC00 30%, transparent 70%);
            bottom: 15%;
            right: 10%;
            animation-delay: 7s;
            opacity: 0.5;
        }
        
        .shape-3 {
            width: 130px;
            height: 130px;
            background: radial-gradient(circle, #FFCC00 0%, #086a3b 40%, transparent 70%);
            top: 60%;
            left: 15%;
            animation-delay: 14s;
            opacity: 0.6;
        }
        
        .shape-4 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #086a3b 0%, #FFCC00 30%, transparent 70%);
            bottom: 5%;
            left: 70%;
            animation-delay: 21s;
            opacity: 0.5;
        }
        
        @keyframes floatEnhanced {
            0%, 100% { 
                transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
            }
            25% { 
                transform: translate3d(40px, -30px, 40px) rotate(90deg) scale(1.05);
            }
            50% { 
                transform: translate3d(-30px, 20px, -30px) rotate(180deg) scale(0.95);
            }
            75% { 
                transform: translate3d(20px, 30px, 20px) rotate(270deg) scale(1.02);
            }
        }
        
        /* Hero content with advanced text effects */
        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1200px;
            padding: 60px 40px;
            text-align: left;
            backdrop-filter: blur(5px);
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #ffffff;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            position: relative;
            display: inline-block;
        }
        
        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #FFCC00, transparent);
            border-radius: 2px;
        }
        
        /* FIXED: Dynamic content blocks - Responsive layout */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Changed from 450px to 300px */
            gap: 25px;
            margin-top: 40px;
            perspective: 1000px;
        }
        
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr; /* Single column on mobile */
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .content-grid {
                gap: 15px;
            }
        }
        
        .science-card {
            background: rgba(8, 106, 59, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(8, 106, 59, 0.2);
            z-index: 3;
        }
        
        .science-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 204, 0, 0.15);
            border: 1px solid rgba(255, 204, 0, 0.3);
            box-shadow: 0 15px 35px rgba(255, 204, 0, 0.2);
        }
        
        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #FFCC00;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-title::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background-color: #FFCC00;
            border-radius: 50%;
        }
        
        .card-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }
        
        .card-text em {
            font-style: italic;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 500;
        }
        
        /* Enhanced scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: #FFCC00;
            text-align: center;
            animation: bounce 2s infinite;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .scroll-indicator:hover {
            transform: translateX(-50%) scale(1.05);
            color: #ffffff;
        }
        
        .scroll-indicator i {
            font-size: 1.8rem;
            margin-bottom: 8px;
            display: block;
            color: #FFCC00;
            animation: arrowFloat 2s ease-in-out infinite;
        }
        
        .scroll-indicator span {
            color: #ffffff;
            font-size: 0.9rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .scroll-indicator:hover span {
            color: #FFCC00;
        }
        
        @keyframes arrowFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-10px) translateX(-50%); }
            60% { transform: translateY(-5px) translateX(-50%); }
        }
        
        /* Main content with reduced spacing */
        .main-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px 30px;
            z-index: 5;
            /* Add subtle gradient to blend with background */
            background: linear-gradient(to bottom, transparent, rgba(255, 204, 0, 0.02));
        }
        
        /* Enhanced research section with interconnected network background */
        .research-section {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(8, 106, 59, 0.3);
            margin-top: -20px;
            position: relative;
            overflow: hidden;
            /* Add subtle border to stand out */
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        
        /* INTERCONNECTED NETWORK for RESEARCH SECTION */
        .research-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.2;
        }
        
        /* SHARED NETWORK STYLES FOR BOTH SECTIONS */
        
        /* Network nodes (research/innovation points) */
        .network-node {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FFCC00;
            animation: nodePulse 3s ease-in-out infinite;
            z-index: 1;
        }
        
        .network-node.green {
            background: #086a3b;
        }
        
        .network-node.large {
            width: 12px;
            height: 12px;
        }
        
        @keyframes nodePulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.3); opacity: 1; }
        }
        
        /* Network connections (research/innovation pathways) */
        .network-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, #FFCC00, #086a3b, #FFCC00);
            transform-origin: left center;
            animation: lineFlow 6s linear infinite;
            opacity: 0.4;
            z-index: 1;
        }
        
        @keyframes lineFlow {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }
        
        /* Circular connections */
        .network-circle {
            position: absolute;
            border: 1px dashed rgba(255, 204, 0, 0.3);
            border-radius: 50%;
            animation: circleRotate 25s linear infinite;
            z-index: 1;
        }
        
        .network-circle.green {
            border-color: rgba(8, 106, 59, 0.3);
        }
        
        @keyframes circleRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Molecular-like connections */
        .network-molecule {
            position: absolute;
            width: 80px;
            height: 80px;
            animation: moleculeRotate 20s linear infinite;
            z-index: 1;
        }
        
        .network-molecule::before,
        .network-molecule::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(8, 106, 59, 0.25);
            border-radius: 50%;
            animation: moleculePulse 8s ease-in-out infinite;
        }
        
        .network-molecule::after {
            width: 70%;
            height: 70%;
            top: 15%;
            left: 15%;
            border-color: rgba(255, 204, 0, 0.25);
            animation-delay: 4s;
        }
        
        @keyframes moleculeRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes moleculePulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }
        
        /* Data flow animation */
        .data-flow {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #FFCC00, #086a3b, transparent);
            animation: dataFlow 3s linear infinite;
            z-index: 1;
        }
        
        .data-flow.green {
            background: linear-gradient(to bottom, transparent, #086a3b, #FFCC00, transparent);
        }
        
        @keyframes dataFlow {
            0% { transform: translateY(-100px); opacity: 0; }
            10% { opacity: 0.7; }
            90% { opacity: 0.7; }
            100% { transform: translateY(100px); opacity: 0; }
        }
        
        /* Connected dots animation */
        .connected-dots {
            position: absolute;
            width: 200px;
            height: 200px;
            z-index: 1;
        }
        
        .dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #086a3b;
            border-radius: 50%;
            animation: dotMove 10s ease-in-out infinite;
        }
        
        .dot.yellow {
            background: #FFCC00;
        }
        
        @keyframes dotMove {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(20px, -20px); }
            50% { transform: translate(-10px, 15px); }
            75% { transform: translate(15px, 10px); }
        }
        
        /* Wave patterns */
        .network-wave {
            position: absolute;
            width: 300px;
            height: 100px;
            overflow: hidden;
            opacity: 0.3;
            z-index: 1;
        }
        
        .wave-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFCC00, #086a3b, transparent);
            animation: waveMove 4s linear infinite;
        }
        
        .wave-line:nth-child(2) {
            top: 25px;
            animation-delay: 1s;
        }
        
        .wave-line:nth-child(3) {
            top: 50px;
            animation-delay: 2s;
        }
        
        @keyframes waveMove {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Background glow effect */
        .background-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
            animation: glowPulse 8s ease-in-out infinite;
            z-index: 1;
        }
        
        .background-glow.green {
            background: radial-gradient(circle, rgba(8, 106, 59, 0.1) 0%, transparent 70%);
        }
        
        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.5; }
        }
        
        .research-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, #fff8e1 0%, transparent 70%);
            opacity: 0.05;
            z-index: 0;
            animation: rotateEnhanced 60s linear infinite;
        }
        
        @keyframes rotateEnhanced {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            color: #086a3b;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #086a3b, #FFCC00, #086a3b);
            border-radius: 2px;
            background-size: 200% 100%;
            animation: gradientFlow 3s linear infinite;
        }
        
        @keyframes gradientFlow {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        .section-subtitle {
            color: #5a7a6b;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.5;
        }
        
        /* Enhanced research categories - Compact */
        .research-category {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }
        
        .research-category.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e8f5ee;
            position: relative;
        }
        
        .category-header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #FFCC00, transparent);
            border-radius: 1px;
            animation: headerLine 3s ease-in-out infinite;
        }
        
        @keyframes headerLine {
            0%, 100% { width: 80px; }
            50% { width: 120px; }
        }
        
        .category-icon {
            background: linear-gradient(135deg, #086a3b, #FFCC00);
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(8, 106, 59, 0.3);
            z-index: 2;
        }
        
        .category-title {
            color: #086a3b;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #086a3b, #0a8a4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 2;
        }
        
        /* COMPACT Research list with SMALLER yellow circles */
        .research-list {
            list-style-type: none;
            counter-reset: research-counter;
            position: relative;
            z-index: 2;
        }
        
        /* REDUCED vertical connection line */
        .research-list::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 30px;
            width: 2px;
            height: calc(100% - 20px);
            background: linear-gradient(to bottom, transparent, #fff8e1, transparent);
            z-index: 1;
            opacity: 0.4;
        }
        
        /* COMPACT Research items */
        .research-item {
            padding: 20px 25px 20px 70px;
            margin-bottom: 15px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.95));
            border-radius: 12px;
            border-left: 4px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
            line-height: 1.4;
            min-height: 70px;
            display: flex;
            align-items: center;
            z-index: 2;
            backdrop-filter: blur(10px);
        }
        
        .research-item.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* SMALLER Yellow circle with number - REDUCED SIZE */
        .research-item::after {
            content: counter(research-counter);
            counter-increment: research-counter;
            position: absolute;
            top: 50%;
            left: 25px;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #FFCC00, #ffdb4d);
            color: #086a3b;
            font-size: 0.9rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .research-item:hover::after {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
        }
        
        .research-item:hover {
            transform: translateY(-5px);
            border-left-color: #FFCC00;
            box-shadow: 0 10px 25px rgba(8, 106, 59, 0.1);
        }
        
        .research-item:nth-child(odd):hover {
            background: linear-gradient(145deg, rgba(232, 245, 238, 0.95), rgba(255, 255, 255, 0.95));
        }
        
        .research-item:nth-child(even):hover {
            background: linear-gradient(145deg, rgba(255, 248, 225, 0.95), rgba(255, 255, 255, 0.95));
        }
        
        .highlight {
            color: #086a3b;
            font-weight: 700;
            background: linear-gradient(90deg, rgba(255, 204, 0, 0.2), rgba(255, 204, 0, 0.1));
            padding: 2px 5px;
            border-radius: 4px;
            transition: all 0.2s ease;
            position: relative;
            display: inline-block;
            margin: 0 1px;
            border: 1px solid rgba(255, 204, 0, 0.15);
            font-size: 0.95em;
        }
        
        .research-item:hover .highlight {
            background: linear-gradient(90deg, rgba(255, 204, 0, 0.3), rgba(255, 204, 0, 0.2));
            transform: scale(1.02);
        }
        
        /* Compact status indicators */
        .research-status {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-left: 6px;
            position: relative;
            vertical-align: middle;
            animation: statusPulse 2s ease-in-out infinite;
            border: 1px solid rgba(255, 255, 255, 0.8);
            z-index: 2;
        }
        
        .status-active { background-color: #4CAF50; }
        .status-pending { background-color: #FF9800; }
        .status-completed { background-color: #2196F3; }
        
        @keyframes statusPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        /* Responsive design with compact layouts - UPDATED */
        @media (max-width: 1200px) {
            .hero-title { font-size: 2.8rem; }
            .section-title { font-size: 2.2rem; }
        }
        
        @media (max-width: 992px) {
            .hero-title { font-size: 2.4rem; }
            .section-title { font-size: 2rem; }
            .category-title { font-size: 1.6rem; }
            .science-card {
                padding: 20px;
            }
            .card-title {
                font-size: 1.3rem;
            }
            .research-item { 
                padding: 18px 22px 18px 60px;
            }
            .research-item::after { 
                width: 28px; 
                height: 28px; 
                font-size: 0.85rem;
                left: 22px;
            }
            .content-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .hero-content, .main-container { 
                padding: 30px 20px; 
            }
            .hero-title { 
                font-size: 2rem; 
                line-height: 1.2;
                margin-bottom: 20px;
            }
            .section-title { 
                font-size: 1.8rem; 
                line-height: 1.2;
            }
            .research-section { 
                padding: 40px 25px; 
                margin-top: 0;
            }
            .category-icon { 
                width: 50px; 
                height: 50px; 
                font-size: 1.5rem; 
            }
            .research-item { 
                padding: 16px 20px 16px 55px; 
                margin-bottom: 12px;
                min-height: 65px;
                display: block;
            }
            .research-item::after { 
                width: 26px; 
                height: 26px; 
                font-size: 0.8rem;
                left: 20px;
                top: 20px;
                transform: translateY(0);
            }
            .card-title {
                font-size: 1.2rem;
            }
            .card-text {
                font-size: 0.95rem;
            }
            .category-title {
                font-size: 1.5rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .hero-content {
                padding: 40px 20px;
            }
            /* Fix for floating shapes on mobile */
            .floating-shape {
                display: none; /* Hide on mobile for better performance */
            }
        }
        
        @media (max-width: 576px) {
            .hero-title { 
                font-size: 1.8rem; 
            }
            .hero-title::after {
                width: 100px;
            }
            .section-title { 
                font-size: 1.6rem; 
            }
            .section-subtitle {
                font-size: 1.1rem;
            }
            .research-section { 
                padding: 30px 20px; 
            }
            .research-item { 
                padding: 14px 18px 14px 50px; 
                margin-bottom: 10px;
                min-height: 60px;
            }
            .research-item::after { 
                width: 24px; 
                height: 24px; 
                font-size: 0.75rem;
                left: 18px;
            }
            .category-title { 
                font-size: 1.4rem; 
            }
            .hero-content {
                padding: 30px 15px;
            }
            .category-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            .content-grid {
                gap: 12px;
            }
            .science-card {
                padding: 18px;
            }
            .card-title {
                font-size: 1.1rem;
            }
            .card-text {
                font-size: 0.9rem;
            }
            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .category-header::after {
                left: 0;
                width: 60px;
            }
            .research-list::before {
                left: 25px;
            }
        }
        
        @media (max-width: 375px) {
            .hero-title { 
                font-size: 1.6rem; 
            }
            .section-title { 
                font-size: 1.4rem; 
            }
            .research-item { 
                padding: 12px 15px 12px 45px; 
                font-size: 0.9rem;
            }
            .research-item::after { 
                width: 22px; 
                height: 22px; 
                font-size: 0.7rem;
                left: 15px;
            }
            .science-card {
                padding: 15px;
            }
            .hero-content, .main-container {
                padding: 20px 15px;
            }
            .research-section {
                padding: 25px 15px;
            }
        }