* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        :root {
            --primary-dark: #273D3A;
            --primary-medium: #2d5a4f;
            --primary-light: #7cb342;
            --accent-green: #9ccc65;
            --white: #ffffff;
            --light-gray: #f8faf9;
            --dark-gray: #2c3e50;
            --text-light: rgba(255, 255, 255, 0.9);
            --text-medium: rgba(255, 255, 255, 0.7);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: var(--primary-dark);
            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 61, 53, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(26, 61, 53, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 1002;
        }

        .logo {
            width: clamp(40px, 8vw, 90px);
            height: clamp(40px, 8vw, 90px);
            border-radius: 8px;
            object-fit: contain;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-green);
        }

        .nav-links a.active {
            color: var(--accent-green);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--accent-green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile Menu Button - Fixed */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1002;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Navigation Menu - Fixed */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--primary-dark);
            padding: 80px 30px 30px;
            transition: right 0.3s ease;
            z-index: 1001;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav li {
            margin-bottom: 20px;
        }

        .mobile-nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover,
        .mobile-nav a:active {
            color: var(--accent-green);
        }

        .mobile-nav a.active {
            color: var(--accent-green);
        }

        /* Blog Header */
        .blog-header {
            padding: clamp(6rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(156,204,101,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .blog-header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 2rem);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .blog-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--accent-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .blog-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Blog Content */
        .blog-section {
            padding: clamp(2rem, 5vw, 5rem) 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 2rem);
        }

        /* Featured Article */
        .featured-article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 0;
            margin: clamp(1.5rem, 4vw, 3rem) 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: auto;
        }

        .featured-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-green));
        }

        @media (hover: hover) {
            .featured-article:hover {
                transform: translateY(-5px);
                background: rgba(255, 255, 255, 0.08);
                border-color: rgba(156, 204, 101, 0.3);
            }

            .featured-article:hover .featured-image img {
                transform: scale(1.05);
            }
        }
        
        .featured-article .content-wrapper {
            display: flex;
            flex-direction: row;
            min-height: 400px;
        }

        .featured-content {
            width: 50%;
            padding: clamp(1.5rem, 4vw, 3rem);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-image {
            width: 50%;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .featured-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        /* Article Card */
        .article-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 0;
            margin: clamp(1rem, 3vw, 2rem) 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-green));
        }

        @media (hover: hover) {
            .article-card:hover {
                transform: translateY(-5px);
                background: rgba(255, 255, 255, 0.08);
                border-color: rgba(156, 204, 101, 0.3);
            }
        }

        .article-card .content-wrapper {
            display: flex;
            flex-direction: row;
            min-height: 300px;
        }

        .article-card .featured-content {
            width: 60%;
            padding: clamp(1.5rem, 3vw, 2.5rem);
        }

        .article-card .featured-image {
            width: 40%;
            padding: 1rem;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: clamp(0.5rem, 2vw, 1rem);
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
            flex-wrap: wrap;
        }

        .category {
            background: var(--primary-light);
            color: var(--white);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category.research {
            background: #6366f1;
        }
        
        .category.community {
            background: #ec4899;
        }

        .read-time {
            color: var(--text-medium);
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        }

        .article-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.3rem, 3.5vw, 2.2rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: clamp(0.5rem, 2vw, 1rem);
            color: var(--white);
        }

        .article-card .article-title {
            font-size: clamp(1.1rem, 3vw, 1.8rem);
        }

        .article-excerpt {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            color: var(--text-medium);
            line-height: 1.5;
            margin-bottom: clamp(1rem, 3vw, 2rem);
        }

        .article-card .article-excerpt {
            font-size: clamp(0.85rem, 1.8vw, 1rem);
            margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: clamp(0.5rem, 2vw, 1rem);
        }

        .author-avatar {
            width: clamp(35px, 7vw, 50px);
            height: clamp(35px, 7vw, 50px);
            border-radius: 50%;
            object-fit: cover;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2px;
            flex-shrink: 0;
        }

        .author-name {
            font-weight: 600;
            color: var(--white);
            display: block;
            font-size: clamp(0.85rem, 1.8vw, 1rem);
        }

        .publish-date {
            color: var(--text-medium);
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
        }

        /* Coming Soon Section */
        .coming-soon-section {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
            margin: clamp(2rem, 5vw, 4rem) 0;
            text-align: center;
        }

        .coming-soon-section i {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--accent-green);
            margin-bottom: clamp(1rem, 3vw, 2rem);
        }

        .coming-soon-section h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .coming-soon-section p {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            color: var(--text-medium);
            max-width: 500px;
            margin: 0 auto clamp(1.5rem, 3vw, 2rem);
            line-height: 1.5;
        }

        .notify-btn {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-green) 100%);
            color: var(--primary-dark);
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(124, 179, 66, 0.3);
            min-height: 48px;
            cursor: pointer;
        }

        .notify-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 179, 66, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: clamp(1.5rem, 4vw, 3rem);
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
        }

        .footer-section h4 {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-medium);
            text-decoration: none;
            line-height: 1.6;
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
        }

        .footer-section a:hover {
            color: var(--accent-green);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-green);
            color: var(--primary-dark);
        }

        .email-signup {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .email-input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 16px;
            min-height: 44px;
        }

        .email-input::placeholder {
            color: var(--text-medium);
        }

        .footer-bottom {
            text-align: center;
            padding-top: clamp(1.5rem, 3vw, 2rem);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-medium);
        }

        .footer-bottom p {
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        }

        .btn-small {
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-small:hover {
            background: var(--accent-green);
            transform: translateY(-2px);
        }

        /* Mobile Specific Styles */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .featured-article .content-wrapper,
            .article-card .content-wrapper {
                flex-direction: column;
                min-height: auto;
            }
            
            .featured-content, 
            .featured-image {
                width: 100%;
            }

            .article-card .featured-content,
            .article-card .featured-image {
                width: 100%;
            }
            
            .featured-content {
                padding: 1.5rem;
            }
            
            .featured-image {
                padding: 1rem;
                min-height: 200px;
                max-height: 250px;
            }

            .article-card .featured-content {
                padding: 1.5rem;
            }

            .article-card .featured-image {
                min-height: 180px;
                max-height: 220px;
            }

            .email-signup {
                flex-direction: column;
            }

            .email-signup button {
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
