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

        :root {
            --primary-green: #1B5E20;
            --secondary-gold: #FFA000;
            --fresh-green: #4CAF50;
            --light-green: #C8E6C9;
            --dark-text: #1a1a1a;
            --light-text: #666;
            --white: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background: white;
        }

        @media print {
            body {
                width: 210mm;
                height: 297mm;
            }
            .page {
                page-break-after: always;
                width: 210mm;
                height: 297mm;
                padding: 0;
                margin: 0;
                box-shadow: none;
            }
            .no-print {
                display: none;
            }
            .page:last-child {
                page-break-after: auto;
            }
        }

        @page {
            size: A4;
            margin: 0;
        }

        .page {
            width: 210mm;
            height: 297mm;
            margin: 20px auto;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--fresh-green) 100%);
            padding: 30px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .company-info h1 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }

        .company-info .subtitle {
            font-size: 14px;
            opacity: 0.95;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Cover Page */
        .cover-page {
            background: linear-gradient(180deg, rgba(27,94,32,0.95) 0%, rgba(76,175,80,0.95) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%234CAF50" width="1200" height="800"/><path fill="%231B5E20" opacity="0.3" d="M0 400 Q300 300 600 400 T1200 400 V800 H0 Z"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 60px;
        }

        .cover-logo {
            width: 150px;
            height: 150px;
            background: var(--secondary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .cover-title {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .cover-subtitle {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.95;
            letter-spacing: 2px;
        }

        .cover-features {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cover-feature {
            text-align: center;
        }

        .cover-feature i {
            font-size: 40px;
            color: var(--secondary-gold);
            margin-bottom: 10px;
        }

        .cover-feature p {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .content-page {
            padding: 40px 50px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Playfair Display', serif;
        }

        .section-title i {
            color: var(--secondary-gold);
            font-size: 32px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .product-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid var(--fresh-green);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(76,175,80,0.2);
        }

        .product-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .product-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--fresh-green), var(--primary-green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-green);
        }

        .product-season {
            font-size: 11px;
            color: var(--light-text);
            font-style: italic;
        }

        .product-price {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid rgba(27,94,32,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-tag {
            font-size: 20px;
            font-weight: 700;
            color: var(--fresh-green);
        }

        .price-unit {
            font-size: 12px;
            color: var(--light-text);
            font-weight: 400;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin: 30px 0;
        }

        .stat-box {
            background: linear-gradient(135deg, var(--secondary-gold), #FF8F00);
            color: white;
            padding: 25px 15px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(255,160,0,0.3);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 12px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
        }

        .pricing-table thead {
            background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
            color: white;
        }

        .pricing-table th {
            padding: 15px;
            text-align: left;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-table tbody tr {
            border-bottom: 1px solid #e9ecef;
            transition: background 0.3s ease;
        }

        .pricing-table tbody tr:hover {
            background: #f8f9fa;
        }

        .pricing-table td {
            padding: 15px;
            font-size: 13px;
        }

        .pricing-table .product-name-cell {
            font-weight: 600;
            color: var(--primary-green);
        }

        .pricing-table .price-cell {
            font-weight: 700;
            color: var(--fresh-green);
            font-size: 15px;
        }

        .advantages-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 20px;
        }

        .advantage-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--fresh-green);
        }

        .advantage-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--fresh-green), var(--primary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
        }

        .advantage-content h4 {
            font-size: 15px;
            color: var(--primary-green);
            margin-bottom: 5px;
            font-weight: 700;
        }

        .advantage-content p {
            font-size: 13px;
            color: var(--light-text);
            line-height: 1.5;
        }

        .zones-map {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .zone-card {
            background: linear-gradient(135deg, var(--light-green), #E8F5E9);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--fresh-green);
        }

        .zone-card i {
            font-size: 40px;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .zone-card h3 {
            font-size: 18px;
            color: var(--primary-green);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .zone-card p {
            font-size: 12px;
            color: var(--light-text);
            margin-bottom: 8px;
        }

        .zone-card .zone-stat {
            font-size: 20px;
            font-weight: 800;
            color: var(--fresh-green);
            margin-top: 10px;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 30px;
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .cta-section p {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: var(--secondary-gold);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,160,0,0.3);
        }

        .cta-button:hover {
            background: #FF8F00;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,160,0,0.4);
        }

        .page-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-green);
            color: white;
            padding: 15px 40px;
            font-size: 11px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .print-button {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--secondary-gold);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255,160,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .print-button:hover {
            background: #FF8F00;
            transform: scale(1.05);
        }
