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

        /* 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::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 {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            z-index: 1002;
        }

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

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

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

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

        /* Mobile Navigation Menu */
        .mobile-nav {
            display: none;
            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;
        }

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

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

        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }

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

        /* Blog Post Styles */
        .blog-post {
            max-width: 900px;
            margin: 0 auto;
            padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 4rem);
        }

        .back-to-blog {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 500;
            margin-bottom: clamp(1rem, 3vw, 2rem);
            transition: color 0.3s ease;
            font-size: clamp(0.9rem, 2vw, 1rem);
            min-height: 44px;
            padding: 0.5rem;
        }

        .back-to-blog:hover {
            color: var(--primary-light);
        }

        .blog-post-header {
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 3rem);
        }

        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(0.5rem, 2vw, 1rem);
            margin-bottom: clamp(1rem, 3vw, 2rem);
            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;
        }

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

        .blog-post-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            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;
        }

        .blog-post-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--text-medium);
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            line-height: 1.5;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

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

        .author-details {
            text-align: left;
        }

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

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

        /* Hero Image */
        .blog-post-hero {
            width: 100%;
            max-width: 800px;
            margin: clamp(2rem, 4vw, 3rem) auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .blog-post-hero img {
            width: 100%;
            height: auto;
            display: block;
        }

        .image-credit {
            text-align: center;
            font-size: clamp(0.7rem, 1.5vw, 0.8rem);
            color: var(--text-medium);
            margin-top: 0.5rem;
            font-style: italic;
        }

        .image-credit a {
            color: var(--accent-green);
            text-decoration: none;
        }

        .image-credit a:hover {
            text-decoration: underline;
        }

        /* Content Styles */
        .blog-post-content {
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.7;
            color: var(--text-light);
        }

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

        .blog-post-content h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.4rem, 3.5vw, 2rem);
            font-weight: 700;
            margin: clamp(2rem, 4vw, 2.5rem) 0 clamp(0.75rem, 2vw, 1rem);
            color: var(--white);
        }

        .blog-post-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 600;
            margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1rem);
            color: var(--white);
        }

        .highlight {
            background: rgba(156, 204, 101, 0.3);
            color: var(--white);
            font-weight: 600;
            padding: 0.1em 0.3em;
            border-radius: 3px;
        }

        .person-name {
            color: var(--white);
            font-weight: 600;
            padding: 0.1em 0.3em;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            text-decoration: none;
        }

        .quote-box {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid var(--accent-green);
            padding: clamp(1.5rem, 3vw, 2rem);
            margin: clamp(1.5rem, 3vw, 2rem) 0;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            backdrop-filter: blur(10px);
        }

        .inline-image {
            max-width: min(400px, 100%);
            border-radius: 10px;
            margin: clamp(1.5rem, 3vw, 2rem) auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: block;
        }

        .inline-image.left {
            float: left;
            margin-right: clamp(1rem, 3vw, 2rem);
            margin-left: 0;
        }

        .inline-image.right {
            float: right;
            margin-left: clamp(1rem, 3vw, 2rem);
            margin-right: 0;
        }

        .references {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            margin: clamp(2rem, 4vw, 3rem) 0;
        }

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

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

        .references li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
            line-height: 1.5;
        }

        .references li:before {
            content: "•";
            color: var(--accent-green);
            position: absolute;
            left: 0;
        }

        .references a {
            color: var(--accent-green);
            text-decoration: none;
        }

        /* Share Section */
        .share-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            margin: clamp(2rem, 4vw, 3rem) 0;
            text-align: center;
        }

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

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

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

        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }

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

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

        /* 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);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 clamp(1rem, 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);
        }

        .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);
            max-width: 1200px;
            margin: 0 auto;
            padding-left: clamp(1rem, 3vw, 2rem);
            padding-right: clamp(1rem, 3vw, 2rem);
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        }

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

            .nav-links { 
                display: none; 
            }

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

            .blog-post { 
                padding: 5rem 1rem 2rem; 
            }

            .article-meta { 
                flex-direction: column; 
                gap: 0.5rem; 
            }

            .inline-image.left, 
            .inline-image.right { 
                float: none; 
                margin: 1rem auto; 
                max-width: 100%;
            }

            .share-buttons { 
                flex-direction: column; 
                align-items: center; 
            }

            .share-btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

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

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

        @media (max-width: 480px) {
            .blog-post-content h2 {
                margin: 1.5rem 0 0.75rem;
            }

            .blog-post-content h3 {
                margin: 1.25rem 0 0.5rem;
            }

            .quote-box {
                padding: 1rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 320px) {
            .blog-post {
                padding: 4rem 0.75rem 2rem;
            }

            .blog-post-title {
                font-size: 1.5rem;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) {
            .share-btn:active {
                transform: scale(0.98);
            }
        }

        html { 
            scroll-behavior: smooth; 
        }
