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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: #ffffff;
        }

        /* A4 Print Layout */
        @page {
            size: A4;
            margin: 0;
        }

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

        @media print {
            .page {
                margin: 0;
                box-shadow: none;
                page-break-after: always;
            }
            .no-print {
                display: none;
            }
        }

        /* Color Palette */
        :root {
            --primary: #1a5490;
            --secondary: #e74c3c;
            --accent: #f39c12;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --gold: #d4af37;
        }

        /* PAGE 1 - COUVERTURE */
        .cover {
            background: linear-gradient(135deg, var(--primary) 0%, #2c5f8d 100%);
            color: white;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

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

        .logo-area {
            background: white;
            width: 200px;
            height: 80px;
            margin: 0 auto 30px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }

        .cover-title {
            font-size: 48px;
            font-weight: 800;
            margin: 30px 0 20px;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

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

        .cover-values {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .value-box {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .value-icon {
            font-size: 32px;
            margin-bottom: 12px;
            color: var(--gold);
        }

        .value-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .value-text {
            font-size: 14px;
            opacity: 0.9;
        }

        .cover-footer {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* PAGE 2 - PRÉSENTATION */
        .content-page {
            padding: 50px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--primary);
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .page-subtitle {
            font-size: 16px;
            color: #7f8c8d;
            font-weight: 300;
        }

        .mission-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            border-left: 5px solid var(--secondary);
        }

        .mission-text {
            font-size: 18px;
            font-style: italic;
            color: var(--dark);
            line-height: 1.8;
            text-align: center;
        }

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

        .stat-box {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 13px;
            color: #7f8c8d;
            font-weight: 600;
        }

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

        .feature-card {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
        }

        .feature-icon {
            font-size: 28px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .feature-content p {
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.5;
        }

        /* PAGE 3-5 - FLOTTE */
        .vehicle-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .vehicle-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .vehicle-card:hover {
            transform: translateY(-5px);
        }

        .vehicle-image {
            height: 140px;
            background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .vehicle-icon {
            font-size: 60px;
            color: white;
            opacity: 0.9;
        }

        .vehicle-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--gold);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        .vehicle-info {
            padding: 20px;
        }

        .vehicle-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .vehicle-category {
            font-size: 12px;
            color: #7f8c8d;
            margin-bottom: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .vehicle-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin-bottom: 15px;
            font-size: 12px;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #7f8c8d;
        }

        .spec-icon {
            color: var(--accent);
            font-size: 14px;
        }

        .vehicle-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #ecf0f1;
        }

        .price-amount {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
        }

        .price-label {
            font-size: 11px;
            color: #7f8c8d;
        }

        .price-unit {
            font-size: 13px;
            font-weight: 600;
            color: #7f8c8d;
        }

        /* PAGE 6 - TARIFS */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .pricing-table thead {
            background: var(--primary);
            color: white;
        }

        .pricing-table th {
            padding: 15px 10px;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 11px;
        }

        .pricing-table td {
            padding: 12px 10px;
            border-bottom: 1px solid #ecf0f1;
        }

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

        .price-highlight {
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
        }

        .included-badge {
            background: #27ae60;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
        }

        .optional-badge {
            background: var(--accent);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
        }

        /* PAGE 7 - SERVICES */
        .services-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .service-icon {
            font-size: 32px;
            color: var(--primary);
            flex-shrink: 0;
        }

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

        .service-content p {
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.5;
        }

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

        .cert-badge {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, #2c5f8d 100%);
            color: white;
            border-radius: 10px;
        }

        .cert-icon {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .cert-text {
            font-size: 12px;
            font-weight: 600;
        }

        /* PAGE 8 - CONTACT */
        .contact-page {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }

        .contact-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

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

        .info-list {
            list-style: none;
        }

        .info-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .info-icon {
            color: var(--accent);
            font-size: 18px;
            width: 25px;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--secondary) 0%, #c0392b 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
        }

        .cta-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-text {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .cta-code {
            background: rgba(255,255,255,0.2);
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 2px;
            display: inline-block;
        }

        .footer {
            text-align: center;
            padding: 30px;
            background: var(--dark);
            color: white;
            margin-top: 30px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .footer-text {
            font-size: 13px;
            opacity: 0.8;
        }

        /* Print Button */
        .print-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--secondary);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s;
        }

        .print-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
