/* Section */
.contact-section {
    padding: 25px 0;
}

/* Contact info */
.contact-info h3 {
    color: #2d8a4e;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(45, 138, 78, 0.1);
    color: #2d8a4e;
    font-size: 1rem;
}

/* Map */
.map-container {
    padding: 15px;
    height: 100%;
}

#map {
    height: 100%;
    min-height: 320px;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .map-container {
        height: auto;
    }

    #map {
        min-height: 280px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

