.contact-section {
    padding: 60px 0;
    background-color: #FDF7F7;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.contact-section .section-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.contact-text {
    width: 100%;
    padding: 0 20px;
}

.contact-info {
    font-style: normal;
}

.contact-phone,
.contact-email,
.contact-address {
    font-weight: 500;
    color: #4B2C24;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #4B2C24;
}

.contact-phone a,
.contact-email a,
.contact-address a {
    font-weight: 500;
    color: #4B2C24;
    text-decoration: none;
    font-style: italic;
}

.contact-hours {
    margin-top: 16px;
    color: #4B2C24;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-hours__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hours__label {
    font-weight: 600;
}

.contact-hours__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hours__list li {
    position: relative;
    padding-left: 26px;
    line-height: 1.6;
    color: #4A332F;
}

.contact-hours__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A798 0%, #F4E4CC 100%);
}


.contact-map {
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 12px;
}

.contact-section .heading-divider::after {
    margin: 12px auto 0;
}

.contact-section p {
    color: #4A332F;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .contact-section .section-content {
        flex-direction: row;
        align-items: stretch;
        gap: 60px;
    }

    .contact-text {
        flex: 1;
        max-width: none;
        text-align: left;
    }

    .contact-map {
        flex: 1;
    }

    .contact-map iframe {
        min-height: 450px;
    }
}
