@import "styles.css";
.contact-section {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

.row-info-list {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
}

.row-info {
    display: flex;
    align-items: center;
    font-style: normal
}

.icon {
    width: 36px;
    height: 36px;
    margin-right: 1rem;
}

.contact-map {
    aspect-ratio: 3/2;
    position: relative;
    height: 100%;
}

.contact-map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.contact-map div {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-section {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-section {
        font-size: 1.2rem;
    }
    .contact-map {
        flex: 1;
        width: 50%;
        max-width: 50%;
    }

    .row-info-list {
        flex: 1;
        flex-shrink: 0;
    }
    .contact-section {
        flex-direction: row;
    }
    .icon {
        width: 40px;
        height: 40px;
    }

}

@media (min-width: 1200px) {
    .contact-section {
        font-size: 1.3rem;
    }

    .icon {
        width: 44px;
        height: 44px;
    }

    .schedule-section-list{
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
}