@media (max-width: 768px) {
    .contact-us-column {
        flex-direction: column;
        height: auto !important;
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
    }

    .contact-info {
        flex: 1 1 300px;
    }
    .google-map {
        flex: 2 1 600px;
        min-height: 400px;
    }

    .google-map iframe {
        width: 100% !important;
        height: 100% !important;
        border: 0;
        display: block;
    }
}

.contact-us-column {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.contacts {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-around;
}

.contact-info h3 {
    text-align: center;
}

.contacts li {
    flex: 1 1 200px;
    background-color: #fff8ee;
    border: 1px solid #000000;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    color: #774213;
}

.info {
    color: #000000;
    font-size: 1rem;
}

.contact-info,
.google-map {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f5f0;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.google-map iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.google-map h3 {
    text-align: center;
}