
        /* Hero Section */
        .hero-section {
            padding: 60px 0;
            background: linear-gradient(135deg, rgba(217, 159, 70, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
            text-align: center;
        }

        .hero-content h1 {
            font-family: 'Rubik', sans-serif;
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            color: var(--light-dark);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

        /* Map Section */
        .map-section {
            padding: 40px 0;
        }

        .section-title {
            font-family: 'Rubik', sans-serif;
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            margin-bottom: 60px;
            height: 500px;
            position: relative;
        }

        #deliveryMap {
            width: 100%;
            height: 100%;
        }

        /* Map Controls */
        .map-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            padding: 15px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            z-index: 1000;
            max-width: 300px;
        }

        .map-controls h4 {
            font-family: 'Rubik', sans-serif;
            margin-bottom: 15px;
            color: var(--dark);
            font-size: 18px;
        }

        .zone-selector {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .zone-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .zone-checkbox input {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
        }

        .zone-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }

        .zone-label {
            font-weight: 500;
        }

        /* Zones Grid */
        .zones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .zone-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
            text-align: center;
        }

        .zone-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .zone-icon {
            width: 70px;
            height: 70px;
            background: rgba(217, 159, 70, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .zone-icon i {
            font-size: 30px;
            color: var(--primary);
        }

        .zone-card h3 {
            font-family: 'Rubik', sans-serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .zone-details {
            list-style: none;
            margin-top: 20px;
        }

        .zone-details li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--light-dark);
        }

        .zone-details i {
            color: var(--primary);
            width: 20px;
        }

        /* Delivery Schedule */
        .schedule-section {
            padding: 60px 0;
            background-color: var(--light);
            border-radius: var(--radius);
            margin-bottom: 60px;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }

        .schedule-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
        }

        .schedule-content h3 {
            font-family: 'Rubik', sans-serif;
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--dark);
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }

        .timeline-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px rgba(217, 159, 70, 0.3);
        }

        .timeline-time {
            font-weight: 600;
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 5px;
        }

        .timeline-title {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
        }

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

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            font-family: 'Rubik', sans-serif;
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-question i {
            color: var(--primary);
        }

        .faq-answer {
            color: var(--light-dark);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
            text-align: center;
            color: white;
            border-radius: var(--radius);
            margin-bottom: 60px;
        }

        .cta-content h2 {
            font-family: 'Rubik', sans-serif;
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-content p {
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 18px;
            opacity: 0.9;
            color: var(--white);
        }

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

        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            background: var(--primary);
            color: var(--white);
        }

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

        /* Footer */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-family: 'Rubik', sans-serif;
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #CCCCCC;
            text-decoration: none;
            transition: var(--transition);
            font-size: 15px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact {
            color: #CCCCCC;
            font-size: 15px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--secondary);
            margin-top: 3px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #CCCCCC;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .zones-grid, .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .schedule-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .schedule-image {
                order: 2;
            }
            
            .schedule-content {
                order: 1;
            }
            
            .map-controls {
                position: relative;
                top: 0;
                right: 0;
                margin-bottom: 20px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .zones-grid, .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .map-container {
                height: 400px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 28px;
            }
            
            .zone-card, .faq-item {
                padding: 20px;
            }
            
            .cta-content h2 {
                font-size: 28px;
            }
            
            .timeline {
                padding-left: 20px;
            }
            
            .timeline-item::before {
                left: -26px;
            }
        }
        .protected-contact {
            cursor: pointer;
            color: var(--primary);
            text-decoration: underline dotted;
            transition: all 0.3s ease;
        }

        .protected-contact:hover {
            color: #c78f3a;
            text-decoration: underline;
        }