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

        :root {
            --primary-green: #1B5E20;
            --secondary-gold: #FFA000;
            --ocean-blue: #006064;
            --light-blue: #B2EBF2;
            --dark-text: #1a1a1a;
            --light-text: #666;
            --white: #ffffff;
        }

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

        /* Print Styles */
        @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 Container */
        .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 Global */
        .header {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--ocean-blue) 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(0,96,100,0.95) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23006064" 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);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

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

        .cover-contact {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 13px;
            opacity: 0.9;
        }

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

        .section-subtitle {
            font-size: 16px;
            color: var(--light-text);
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Product Grid */
        .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(--secondary-gold);
            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(0,0,0,0.15);
        }

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

        .product-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-green), var(--ocean-blue));
            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-latin {
            font-size: 12px;
            color: var(--light-text);
            font-style: italic;
        }

        .product-details {
            margin-top: 12px;
        }

        .product-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .product-detail i {
            color: var(--secondary-gold);
            width: 18px;
        }

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

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

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .service-card {
            background: white;
            border: 2px solid var(--light-blue);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--secondary-gold);
            box-shadow: 0 6px 20px rgba(255,160,0,0.2);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-green), var(--ocean-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin: 0 auto 15px;
        }

        .service-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .service-desc {
            font-size: 13px;
            color: var(--light-text);
            line-height: 1.5;
        }

        /* Quality Standards */
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .quality-badge {
            background: linear-gradient(135deg, var(--primary-green), var(--ocean-blue));
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .quality-badge i {
            font-size: 36px;
            color: var(--secondary-gold);
            margin-bottom: 10px;
        }

        .quality-badge h3 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .quality-badge p {
            font-size: 11px;
            opacity: 0.9;
            font-weight: 300;
        }

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

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .contact-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--secondary-gold);
        }

        .contact-box h3 {
            font-size: 18px;
            color: var(--primary-green);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-box h3 i {
            color: var(--secondary-gold);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .contact-item i {
            color: var(--ocean-blue);
            width: 20px;
        }

        /* Table Styles */
        .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(--ocean-blue));
            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(--secondary-gold);
            font-size: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--ocean-blue));
            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);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--primary-green);
        }

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

        .page-number {
            font-weight: 600;
        }

        /* Print Button */
        .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);
        }

        /* Advantages List */
        .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(--secondary-gold);
        }

        .advantage-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-green), var(--ocean-blue));
            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;
        }

        /* Process Timeline */
        .process-timeline {
            position: relative;
            padding: 20px 0;
        }

        .process-step {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 29px;
            top: 60px;
            bottom: -25px;
            width: 2px;
            background: var(--light-blue);
        }

        .process-step:last-child::before {
            display: none;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-gold), #FF8F00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255,160,0,0.3);
            position: relative;
            z-index: 2;
        }

        .process-content {
            flex: 1;
            padding-top: 5px;
        }

        .process-content h4 {
            font-size: 16px;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-weight: 700;
        }

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

        /* Highlights Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--secondary-gold), #FF8F00);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 6px 20px rgba(255,160,0,0.3);
        }

        .highlight-box h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .highlight-box li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 14px;
            line-height: 1.6;
        }

        .highlight-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: 900;
            font-size: 18px;
        }

        /* Certifications */
        .certifications {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .cert-badge {
            background: white;
            border: 3px solid var(--primary-green);
            border-radius: 15px;
            padding: 20px 30px;
            text-align: center;
            min-width: 150px;
        }

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

        .cert-badge h4 {
            font-size: 14px;
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cert-badge p {
            font-size: 11px;
            color: var(--light-text);
        }
