    header {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Page Banner */
    .page-banner {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        color: white;
        text-align: center;
    }

    .page-banner h1 {
        font-size: 48px;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease;
        font-family: 'Playfair Display', serif;
    }

    .page-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        animation: fadeInUp 0.8s ease 0.2s both;
    }

    /* Contact Section */
    .contact-section {
        padding: 80px 0;
        background: white;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    /* Contact Form */
    .contact-form-wrapper {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .form-title {
        font-size: 28px;
        color: #2E5C3E;
        margin-bottom: 10px;
        font-family: 'Playfair Display', serif;
    }

    .form-subtitle {
        color: #666;
        margin-bottom: 30px;
        font-size: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-weight: 500;
        font-size: 14px;
    }

    .form-label .required {
        color: #D4A853;
    }

    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        transition: all 0.3s;
        background: white;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #2E5C3E;
        box-shadow: 0 0 0 4px rgba(46, 92, 62, 0.1);
    }

    .form-input:hover,
    .form-select:hover,
    .form-textarea:hover {
        border-color: #D4A853;
    }

    .form-textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        cursor: pointer;
    }

    .submit-btn {
        width: 100%;
        padding: 16px;
        background: #2E5C3E;
        color: white;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .submit-btn:hover {
        background: #1A3A2A;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(46, 92, 62, 0.2);
    }

    .submit-btn i {
        font-size: 18px;
    }

    .form-note {
        margin-top: 15px;
        color: #999;
        font-size: 13px;
        text-align: center;
    }

    /* Contact Information */
    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .info-card {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 30px;
        transition: transform 0.3s;
    }

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

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

    .card-icon {
        width: 50px;
        height: 50px;
        background: #2E5C3E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4A853;
        font-size: 24px;
    }

    .card-header h3 {
        color: #2E5C3E;
        font-size: 20px;
    }

    .contact-details {
        list-style: none;
    }

    .contact-details li {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        color: #666;
        font-size: 15px;
    }

    .contact-details li i {
        width: 20px;
        color: #D4A853;
        font-size: 16px;
        margin-top: 3px;
    }

    .contact-details li a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
        word-break: break-word;
    }

    .contact-details li a:hover {
        color: #2E5C3E;
    }

    .whatsapp-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #25D366;
        color: white !important;
        padding: 10px 20px;
        border-radius: 50px;
        margin-top: 10px;
        transition: all 0.3s;
    }

    .whatsapp-link:hover {
        background: #128C7E;
        transform: translateY(-2px);
    }

    .whatsapp-link i {
        font-size: 20px;
    }

    /* US Representative Card */
    .rep-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border: 2px solid #D4A853;
    }

    .rep-badge {
        display: inline-block;
        background: #D4A853;
        color: #2E5C3E;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* Business Hours */
    .hours-grid {
        display: grid;
        gap: 10px;
    }

    .hours-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #ddd;
    }

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-day {
        color: #2E5C3E;
        font-weight: 600;
    }

    .hours-time {
        color: #666;
    }

    .urgent-note {
        margin-top: 15px;
        padding: 12px;
        background: #fff3cd;
        border-radius: 8px;
        color: #856404;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .urgent-note i {
        color: #D4A853;
    }

    /* Map Section */
    .map-section {
        padding: 0 0 60px;
        background: white;
    }

    .map-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        height: 400px;
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        background: #e9ecef;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #666;
        position: relative;
        background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
        background-size: cover;
        background-position: center;
    }

    .map-overlay {
        background: rgba(46, 92, 62, 0.9);
        color: white;
        padding: 20px 40px;
        border-radius: 10px;
        text-align: center;
    }

    .map-overlay i {
        color: #D4A853;
        font-size: 40px;
        margin-bottom: 10px;
    }

    .map-overlay p {
        font-size: 16px;
    }

    /* Live Chat Section */
    .chat-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .chat-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .chat-icon {
        width: 80px;
        height: 80px;
        background: #2E5C3E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: #D4A853;
        font-size: 40px;
    }

    .chat-container h3 {
        color: #2E5C3E;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .chat-container p {
        color: #666;
        margin-bottom: 25px;
        font-size: 16px;
    }

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

    .chat-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

    .chat-btn.whatsapp {
        background: #25D366;
        color: white;
    }

    .chat-btn.whatsapp:hover {
        background: #128C7E;
        transform: translateY(-3px);
    }

    .chat-btn.tawk {
        background: #2E5C3E;
        color: white;
    }

    .chat-btn.tawk:hover {
        background: #1A3A2A;
        transform: translateY(-3px);
    }

    .timezone-note {
        margin-top: 20px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        color: #666;
        font-size: 14px;
        font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    @media (max-width: 992px) {
        .contact-container {
            grid-template-columns: 1fr;
        }
        
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
        
        .chat-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .chat-btn {
            width: 100%;
            justify-content: center;
        }
        
        .footer-main {
            grid-template-columns: 1fr;
        }
        
        /* nav {
            display: none;
        } */
        
        /* .mobile-menu {
            display: block;
        } */
    }