
        :root {
            --green-dark: #1a472a;
            --green-primary: #2d5a3d;
            --green-medium: #4a7c59;
            --green-light: #7cb083;
            --green-pale: #a8d4ae;
            --green-pastel: #d4ecd7;
            --green-accent: #9abc0e;
            --green-lime: #b8d935;

            --white: #ffffff;
            --off-white: #f8faf8;
            --gray-light: #e8ede9;
            --gray-medium: #6b7c6e;
            --gray-dark: #3d4a3f;
            --black: #1a1f1b;

            --poland-red: #dc143c;
            --poland-red-dark: #a01030;

            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;

            --transition-fast: 0.2s ease;
            --transition-medium: 0.4s ease;

            --shadow-sm: 0 2px 4px rgba(26, 71, 42, 0.1);
            --shadow-md: 0 4px 12px rgba(26, 71, 42, 0.15);
            --shadow-lg: 0 8px 30px rgba(26, 71, 42, 0.2);
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.8;
            color: var(--gray-dark);
            background: var(--off-white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.3;
            color: var(--green-dark);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        /* ==================== HEADER ==================== */
        .header {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-lg);
        }

        .header-top {
            background: rgba(0, 0, 0, 0.15);
            padding: var(--space-xs) 0;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: var(--space-sm);
        }

        .social-links a {
            color: var(--white);
            opacity: 0.8;
            font-size: 1rem;
            transition: all var(--transition-fast);
        }

        .social-links a:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 0.25rem 0.75rem;
            backdrop-filter: blur(10px);
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--white);
            padding: 0.25rem 0.5rem;
            width: 150px;
            font-family: var(--font-body);
            font-size: 0.875rem;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-box input:focus {
            outline: none;
            width: 200px;
        }

        .search-box button {
            background: transparent;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 0.25rem;
        }

        .header-main {
            padding: var(--space-md) 0;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: var(--green-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .logo-text {
            color: var(--white);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--white);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 0.875rem;
            opacity: 0.85;
            font-weight: 400;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: var(--space-xs);
        }

        .nav-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition-fast);
        }

        .main-nav {
            display: flex;
            align-items: center;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: var(--space-xs);
        }

        .main-nav a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: all var(--transition-fast);
            position: relative;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 2px;
            background: var(--green-accent);
            border-radius: 2px;
            transition: transform var(--transition-fast);
        }

        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.1);
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* ==================== HERO ARTICLE ==================== */
        .article-hero {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .article-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(45, 90, 61, 0.3) 0%,
                rgba(26, 71, 42, 0.85) 100%
            );
            display: flex;
            align-items: flex-end;
            justify-content: center;
            text-align: center;
            padding: var(--space-xl);
        }

        .article-hero-content {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
            color: var(--white);
        }

        .article-category {
            display: inline-block;
            background: var(--green-accent);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-md);
        }

        .article-hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--white);
            margin-bottom: var(--space-md);
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-md);
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }

        .article-meta i {
            color: var(--green-accent);
        }

        /* ==================== BREADCRUMB ==================== */
        .breadcrumb {
            background: var(--white);
            padding: var(--space-sm) 0;
            border-bottom: 1px solid var(--gray-light);
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            list-style: none;
            font-size: 0.9rem;
        }

        .breadcrumb-list a {
            color: var(--green-primary);
        }

        .breadcrumb-list a:hover {
            color: var(--green-accent);
        }

        .breadcrumb-list .separator {
            color: var(--gray-medium);
        }

        .breadcrumb-list .current {
            color: var(--gray-medium);
        }

        /* ==================== ARTICLE CONTENT ==================== */
        .article-content {
            padding: var(--space-xl) 0;
        }

        .article-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: var(--space-xl);
        }

        .article-body {
            background: var(--white);
            border-radius: 16px;
            padding: var(--space-xl);
            box-shadow: var(--shadow-md);
        }

        .article-body h2 {
            font-size: 1.75rem;
            margin-top: var(--space-lg);
            margin-bottom: var(--space-md);
            padding-bottom: var(--space-sm);
            border-bottom: 3px solid var(--green-accent);
            display: inline-block;
        }

        .article-body h2:first-child {
            margin-top: 0;
        }

        .article-body h3 {
            font-size: 1.35rem;
            margin-top: var(--space-md);
            margin-bottom: var(--space-sm);
            color: var(--green-primary);
        }

        .article-body p {
            margin-bottom: var(--space-md);
            text-align: justify;
        }

        .article-body strong {
            color: var(--green-dark);
        }

        .intro-text {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--green-dark);
            border-left: 4px solid var(--green-accent);
            padding-left: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-md);
            margin: var(--space-lg) 0;
        }

        .stat-card {
            background: linear-gradient(135deg, var(--green-pastel) 0%, var(--white) 100%);
            border-radius: 12px;
            padding: var(--space-md);
            text-align: center;
            border: 2px solid var(--green-pale);
            transition: transform var(--transition-fast);
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card i {
            font-size: 2rem;
            color: var(--green-accent);
            margin-bottom: var(--space-sm);
        }

        .stat-number {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--green-dark);
            font-family: var(--font-display);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-medium);
            margin-top: var(--space-xs);
        }

        /* Production Table */
        .production-table {
            width: 100%;
            border-collapse: collapse;
            margin: var(--space-lg) 0;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .production-table thead {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
            color: var(--white);
        }

        .production-table th {
            padding: var(--space-md);
            text-align: left;
            font-weight: 600;
        }

        .production-table td {
            padding: var(--space-md);
            border-bottom: 1px solid var(--gray-light);
        }

        .production-table tr:last-child td {
            border-bottom: none;
        }

        .production-table tr:hover {
            background: var(--green-pastel);
        }

        .production-table .highlight {
            background: rgba(154, 188, 14, 0.15);
            font-weight: 600;
        }

        .rank-badge {
            display: inline-block;
            background: var(--green-accent);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        /* Quote Box */
        .quote-box {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
            color: var(--white);
            padding: var(--space-lg);
            border-radius: 12px;
            margin: var(--space-lg) 0;
            position: relative;
        }

        .quote-box::before {
            content: '\201C';
            font-size: 5rem;
            font-family: var(--font-display);
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.2;
            color: var(--green-accent);
        }

        .quote-box blockquote {
            font-size: 1.15rem;
            font-style: italic;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .quote-box cite {
            display: block;
            margin-top: var(--space-md);
            font-style: normal;
            font-weight: 600;
            color: var(--green-accent);
        }

        /* Image in Article */
        .article-image {
            margin: var(--space-lg) 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .article-image img {
            width: 100%;
        }

        .article-image figcaption {
            background: var(--gray-light);
            padding: var(--space-sm);
            font-size: 0.875rem;
            color: var(--gray-medium);
            text-align: center;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--green-pastel) 0%, var(--white) 100%);
            border-left: 4px solid var(--green-accent);
            padding: var(--space-md);
            border-radius: 0 12px 12px 0;
            margin: var(--space-lg) 0;
        }

        .highlight-box h4 {
            color: var(--green-dark);
            margin-bottom: var(--space-sm);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .highlight-box h4 i {
            color: var(--green-accent);
        }

        /* Tags */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            margin-top: var(--space-xl);
            padding-top: var(--space-lg);
            border-top: 1px solid var(--gray-light);
        }

        .article-tags span {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            color: var(--gray-medium);
            font-weight: 500;
        }

        .tag {
            display: inline-block;
            background: var(--green-pastel);
            color: var(--green-dark);
            padding: 0.35rem 0.85rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }

        .tag:hover {
            background: var(--green-accent);
            color: var(--white);
        }

        /* Share Buttons */
        .share-buttons {
            display: flex;
            gap: var(--space-sm);
            margin-top: var(--space-lg);
            padding-top: var(--space-lg);
            border-top: 1px solid var(--gray-light);
        }

        .share-buttons span {
            font-weight: 600;
            color: var(--gray-dark);
            margin-right: var(--space-sm);
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all var(--transition-fast);
        }

        .share-btn:hover {
            transform: translateY(-3px);
        }

        .share-btn.facebook { background: #1877f2; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.whatsapp { background: #25d366; }

        /* ==================== SIDEBAR ==================== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        .sidebar-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .sidebar-card-header {
            background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-medium) 100%);
            padding: var(--space-md);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            color: var(--white);
        }

        .sidebar-card-header i {
            font-size: 1.5rem;
        }

        .sidebar-card-header h3 {
            color: var(--white);
            font-size: 1.1rem;
        }

        .sidebar-card-body {
            padding: var(--space-md);
        }

        /* Related Articles */
        .related-article {
            display: flex;
            gap: var(--space-sm);
            padding: var(--space-sm) 0;
            border-bottom: 1px solid var(--gray-light);
        }

        .related-article:last-child {
            border-bottom: none;
        }

        .related-article img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .related-article-content h4 {
            font-size: 0.95rem;
            color: var(--green-dark);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .related-article-content h4:hover {
            color: var(--green-accent);
        }

        .related-article-content span {
            font-size: 0.8rem;
            color: var(--gray-medium);
        }

        /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            background: var(--green-dark);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition-fast);
            margin-top: var(--space-lg);
        }

        .back-button:hover {
            background: var(--green-primary);
            transform: translateX(-5px);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--black) 100%);
            color: var(--white);
            padding: var(--space-2xl) 0 var(--space-lg);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-xl);
            margin-bottom: var(--space-xl);
        }

        .footer-col h4 {
            color: var(--green-accent);
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: var(--space-md);
            padding-bottom: var(--space-xs);
            border-bottom: 2px solid var(--green-accent);
            display: inline-block;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: var(--space-xs);
        }

        .footer-col ul a {
            color: rgba(255, 255, 255, 0.8);
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }

        .footer-col ul a:hover {
            color: var(--green-accent);
            transform: translateX(5px);
        }

        .footer-col ul a i {
            font-size: 0.75rem;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .footer-col ul a:hover i {
            opacity: 1;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo img {
            max-width: 200px;
            margin-bottom: var(--space-md);
            border-radius: 8px;
        }

        .footer-logo p {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: var(--space-sm);
            margin-top: var(--space-md);
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all var(--transition-fast);
        }

        .footer-social a:hover {
            background: var(--green-accent);
            color: var(--green-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-md);
        }

        .footer-bottom p {
            font-size: 0.875rem;
            opacity: 0.7;
        }

        .footer-bottom a {
            color: var(--green-accent);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .article-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .sidebar-card {
                flex: 1 1 280px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-top {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--green-dark);
                padding: var(--space-xl) var(--space-md);
                transition: right var(--transition-medium);
                z-index: 1001;
            }

            .main-nav.active {
                right: 0;
            }

            .main-nav ul {
                flex-direction: column;
            }

            .article-hero {
                height: 350px;
            }

            .article-hero h1 {
                font-size: 1.75rem;
            }

            .article-body {
                padding: var(--space-md);
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col ul a {
                justify-content: center;
            }

            .footer-logo {
                align-items: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .production-table {
                font-size: 0.875rem;
            }

            .production-table th,
            .production-table td {
                padding: var(--space-sm);
            }
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-medium);
            z-index: 1000;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
    