* {
            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);
            --text-dark: rgba(255, 255, 255, 0.85);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            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);
        }

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

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

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

        .breadcrumb {
            margin-bottom: clamp(1rem, 3vw, 2rem);
        }

        .breadcrumb a {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 600;
            background: rgba(156, 204, 101, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: clamp(0.85rem, 2vw, 1rem);
            min-height: 44px;
        }

        .breadcrumb a:hover {
            background: rgba(156, 204, 101, 0.2);
            transform: translateX(-2px);
        }

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

        .category {
            background: #ec4899;
            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;
        }

        .read-time,
        .publish-date {
            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.8rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
            background: linear-gradient(135deg, var(--white) 0%, var(--accent-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .author-info {
            display: flex;
            align-items: center;
            gap: clamp(0.75rem, 2vw, 1rem);
            margin-top: clamp(1.5rem, 3vw, 2rem);
        }

        .author-avatar {
            width: clamp(45px, 8vw, 60px);
            height: clamp(45px, 8vw, 60px);
            border-radius: 50%;
            object-fit: contain;
            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.95rem, 2vw, 1.1rem);
        }

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

        /* Article Content */
        .article-content {
            padding: clamp(2rem, 5vw, 4rem) 0;
        }

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

        .content-body {
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.7;
            color: var(--text-dark);
        }

        .content-body h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.4rem, 3.5vw, 2rem);
            font-weight: 700;
            color: var(--white);
            margin: clamp(2rem, 4vw, 3rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
            line-height: 1.3;
        }

        .content-body h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 600;
            color: var(--accent-green);
            margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(0.75rem, 1.5vw, 1rem) 0;
            line-height: 1.4;
        }

        .content-body p {
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
        }

        .content-body strong {
            color: var(--white);
            font-weight: 600;
        }

        .content-body em {
            color: var(--accent-green);
            font-style: normal;
            font-weight: 500;
        }

        .content-body a {
            color: var(--accent-green);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .content-body a:hover {
            border-bottom-color: var(--accent-green);
        }

        /* Quote styling */
        .quote-highlight {
            background: rgba(156, 204, 101, 0.1);
            border-left: 4px solid var(--accent-green);
            padding: clamp(1rem, 2vw, 1.5rem);
            margin: clamp(1.5rem, 3vw, 2rem) 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: var(--text-light);
            font-size: clamp(0.95rem, 2vw, 1.05rem);
        }

        /* Statistics Box */
        .stat-box {
            background: linear-gradient(135deg, var(--primary-light), var(--accent-green));
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            margin: clamp(1.5rem, 3vw, 2rem) 0;
            text-align: center;
            color: var(--primary-dark);
        }

        .stat-box .stat-number {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-box .stat-text {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 500;
            line-height: 1.4;
        }

        /* Key Points Section */
        .key-points {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            margin: clamp(2rem, 4vw, 3rem) 0;
        }

        .key-points h3 {
            margin-top: 0;
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        }

        .key-points ul {
            list-style: none;
            padding: 0;
        }

        .key-points li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .key-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
        }

        /* References Section */
        .references {
            background: var(--primary-medium);
            padding: clamp(2rem, 4vw, 3rem);
            border-radius: 15px;
            margin: clamp(2rem, 5vw, 4rem) 0;
        }

        .references h3 {
            color: var(--white);
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        }

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

        .references li {
            margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
            padding-left: 1rem;
            border-left: 2px solid var(--accent-green);
            color: var(--text-medium);
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            line-height: 1.5;
        }

        /* Call to Action */
        .cta-section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: clamp(2rem, 4vw, 3rem);
            margin: clamp(2rem, 5vw, 4rem) 0;
            text-align: center;
        }

        .cta-section h3 {
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--white);
        }

        .cta-section p {
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            color: var(--text-medium);
            font-size: clamp(0.95rem, 2vw, 1.05rem);
        }
        
        .btn-primary {
            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;
        }

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

        /* Hero Image */
        .hero-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 3rem) 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Social Share Buttons */
        .share-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .share-btn {
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
            color: white;
            font-size: clamp(0.85rem, 1.8vw, 1rem);
            min-height: 44px;
        }

        .share-btn:hover {
            transform: translateY(-2px);
        }

        .share-btn:active {
            transform: scale(0.98);
        }

        .share-btn.twitter {
            background: #1DA1F2;
        }

        .share-btn.linkedin {
            background: #0077B5;
        }

        /* 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;
            }

            .article-header {
                padding: 5rem 0 2rem;
            }

            .article-meta {
                gap: 0.5rem;
            }

            .hero-image {
                max-height: 250px;
                margin: 1rem 0 1.5rem 0;
            }

            .content-body ul[style] {
                padding-left: 1.5rem !important;
            }

            .share-buttons {
                gap: 0.5rem;
            }

            .share-btn {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }

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

        /* Content appears immediately */
        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }
