/* Contact Page - Suzer Plaza Style */
.contact-section-wrapper .row {
    display: flex;
    align-items: stretch;
}

.map-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 3px solid #AD172B;
    padding: 40px 25px;
    background: #fff;
    min-height: 280px;
    max-height: 320px;
}

.map-container .main-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-style: italic;
    color: #181818;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.4;
}

.contact-info-text {
    font-size: 14px;
    color: #555;
}

.label-red {
    color: #AD172B;
    font-weight: 600;
}

.showmap {
    color: #AD172B;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.showmap:hover {
    color: #8a1223;
}

.contact-section-wrapper .kert {
    padding: 0;
    height: 100%;
}

.contact-section-wrapper .kenburns {
    display: block;
    height: 100%;
    width: 100%;
}

.contact-section-wrapper .kenburns img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    max-height: 320px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .contact-section-wrapper .row {
        flex-direction: column;
    }

    .map-container {
        max-height: none;
        min-height: auto;
        padding: 30px 20px;
    }

    .map-container .main-title {
        font-size: 18px;
    }

    .contact-section-wrapper .kert {
        margin-top: 20px;
    }

    .contact-section-wrapper .kenburns img {
        min-height: 250px;
        max-height: none;
    }
}