.columns {
    width: 100%;
    padding: 20px;
    display: inline-flex;
    gap: 10px;
}

.column {
    width: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    align-self: center;
    align-content: center;
    justify-content: start;
}

.column iframe {
    width: calc(50vw - 40px);
    max-width: 710px;
}

.contacts-text button {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--logo-blue);
}

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

.form-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--logo-blue);
    width: 100%;
    text-align: left;
}

.contact-form {
    width: 100%;
    background: var(--secondary-background);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.contact-form textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--logo-blue);
}

.submit-button {
    margin-top: 10px;
    width: 100%;
    background: var(--logo-blue);
    color: white;
    padding: 0.7rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.submit-button:hover {
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

/* ✅ Мобільна адаптація */
@media (max-width: 600px) {
    .contact-form {
        padding: 18px;
    }

    .form-title {
        font-size: 1.2rem;
    }
}


@media (max-width: 750px) {
    .columns {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .column {
        width: 100%;
        margin-bottom: 3%;
    }

    .column iframe {
        width: calc(100vw - 40px);
        max-width: unset;
    }
}
