/* Contact Page Styles */

.contact-hero {
    padding: 2rem 0 0 0;
    text-align: center;
    margin-bottom: 3rem;
}

.map-section {
    padding: 0;
    margin-top: 4rem;
}

.map-section iframe {
    width: 100%;
}

.details-grid {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 3.5rem auto;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-item img {
    max-width: 32px;
    max-height: 32px;
    margin-bottom: 1rem;
}

.detail-item {
    text-align: center;
}

.detail-item h3 {
    margin: 0 0 0.5rem 0;
    color: #F58549;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .contact-hero {
        width: 90%;
        margin: auto;
    }

    .map-section {
        width: 90%;
        margin: 3rem auto;
    }

    .details-grid {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .detail-item {
        margin-bottom: 2rem;
    }

    .detail-item p:last-child {
        margin-bottom: 1rem;
    }

}