/* Contact Page Styling */
#contact-us {
    margin-top: 40px;
}

#contact-us h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #5F07B3;
}

#contact-us h2 {
    color: #008DBB;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Office Locations Grid */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.office {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.office h2 {
    color: #5F07B3;
    margin-bottom: 15px;
}

.office p {
    line-height: 1.6;
}

.office a {
    color: #008DBB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office a:hover {
    color: #005f80;
}

/* Phone List Request Section */
.phone-list-request,
.additional-contact {
    margin-top: 40px;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phone-list-request p,
.additional-contact p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #008DBB;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #005f80;
    color: white;
}

/* Map Section Styles */
.map-section {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.map-section h2 {
    color: #5F07B3;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #5F07B3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }

    .office {
        margin: 0;
        width: 100%;
    }

    .phone-list-request,
    .additional-contact {
        padding: 20px;
    }

    .map-container {
        margin: 0 auto;
    }
} 