#contacto {
    padding: 40px;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contacto-left, .contacto-right {
    width: 48%;
    padding: 20px;
    box-sizing: border-box;
}

.contacto-left {
    background-color: #f4f4f4;
    border-radius: 8px;
}

.contacto-right {
    background-color: #f4f4f4;
    border-radius: 8px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

form label {
    font-size: 1.1em;
    margin-bottom: 5px;
    display: block;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

.contacto-right p {
    font-size: 1.2em;
}

.contacto-right p strong {
    font-size: 1.3em;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .contacto-left, .contacto-right {
        width: 100%;
        margin-bottom: 20px;
    }
}
