<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* contact-us.css */

/* Order Properties */
.contact-hero-section { order: 1; }
.contact-main-content { order: 2; }
.contact-form-wrapper { order: 1; }
.contact-info-wrapper { order: 2; }
.map-wrapper { order: 1; }
.contact-details-wrapper { order: 2; }

/* Mobile Order Adjustments */
@media (max-width: 768px) {
    .contact-form-wrapper { order: 2; }
    .contact-info-wrapper { order: 1; }
}

/* Page Layout */
.page-content {
    display: flex;
    flex-direction: column;
}
/* Hero Code is dynamically added through theme */


/* Main Content Section */
.contact-main-content {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.alert-wrapper {
    margin-bottom: 30px;
}

.contact-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-wrapper {
    flex: 1 1 400px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Contact Info Section (including map) */
.contact-info-wrapper {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    height: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

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

.contact-details-wrapper {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.map-unavailable-message {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {

   
}

@media (max-width: 991px) {
    
}

@media (max-width: 768px) {

    .contact-content-wrapper {
        flex-direction: column;
    }

    .contact-main-content {
        padding: 30px 15px;
    }
}

@media (max-width: 576px) {


   
}

@media (max-width: 480px) {

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
}</pre></body></html>