* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

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

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

        .logo {
            width: 90px;
            height: 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: 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%;
        }

        /* Article Header */
        .article-header {
            padding: 8rem 0 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 2rem;
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            margin-bottom: 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;
        }

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

        .breadcrumb span {
            color: var(--text-medium);
            margin: 0 0.5rem;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .category {
            background: #6366f1;
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .read-time {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        .publish-date {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        .article-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 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: 1.3rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: contain;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2px;
        }

        .author-name {
            font-weight: 600;
            color: var(--white);
            display: block;
            font-size: 1.1rem;
        }

        .author-title {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        /* Article Content */
        .article-content {
            padding: 4rem 0;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .content-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

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

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

        .content-body p {
            margin-bottom: 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: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: var(--text-light);
        }

        /* 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: 2rem;
            margin: 3rem 0;
        }

        .key-points h3 {
            margin-top: 0;
            margin-bottom: 1.5rem;
        }

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

        .key-points li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }

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

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

        .references h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

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

        .references li {
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 2px solid var(--accent-green);
            color: var(--text-medium);
            font-size: 0.95rem;
        }

        /* Related Articles */
        .related-articles {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem 0;
            text-align: center;
        }

        .related-articles h3 {
            margin-bottom: 1rem;
            font-size: 2rem;
            color: var(--white);
        }

        .related-articles p {
            margin-bottom: 2rem;
            color: var(--text-medium);
        }
        
        .related-articles a:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-green) 100%);
            color: var(--primary-dark);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 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);
        }

        .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: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0 3rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

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

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

        .footer-section h4 {
            font-size: 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;
        }

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

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

        .social-links a {
            width: 40px;
            height: 40px;
            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: 0.9rem;
        }

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

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

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

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

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .article-title {
                font-size: 2.2rem;
            }

            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }

            .content-body h2 {
                font-size: 1.6rem;
            }

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

            .key-points,
            .references,
            .related-articles {
                padding: 2rem;
            }
        }

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

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