.contact-page {
    padding: 32px 0 56px;
}

.container-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.column {
    min-width: 0;
    padding: 32px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.column h2 {
    margin: 0 0 24px;
    font-size: 2rem;
    line-height: 1.2;
}

.column p {
    margin-bottom: 12px;
    line-height: 1.65;
    color: #333;
}

.column a {
    color: #0A4381;
    text-decoration: none;
}

.column a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.form-group input,
#id_mensaje {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    font: inherit;
}

#id_mensaje {
    min-height: 220px;
    resize: vertical;
}

.map-container {
    margin-top: 24px;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

#contactForm button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background-color: #0A4381;
    color: white;
    font-weight: 700;
}

#contactForm button[type="submit"]:hover {
    background-color: #082f5b;
}

@media (max-width: 900px) {
    .container-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 20px 0 40px;
    }

    .container-columns {
        gap: 16px;
        padding: 0 16px;
    }

    .column {
        padding: 24px 18px;
    }

    .column h2 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .map-container {
        margin-top: 18px;
        height: 260px;
    }

    #id_mensaje {
        min-height: 180px;
    }

    #contactForm button[type="submit"] {
        width: 100%;
    }
}
