
.contacta {
    position: relative;
    padding: 20px;
    background: #E0E1DD;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 200px;
}

.contacta h2 {
    width: 300px;
    padding-left: 50px;
}

.contacta p {
    padding-left: 50px;
    font-size: 20px;
    width: 800px;
}

.dir {
    position: relative;
    padding: 20px;
    background: #778DA9;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 60px;
}

.dir ul {
    font-size: 20px;
    min-width: 400px;
    width: 30%;
    padding: 3%;
    list-style: none;
}

.contact-form {
    background-color: #415A77;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
    width: 30%;
    min-width: 400px;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #E0E1DD;
    text-align: center;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    background-color: #E0E1DD;
    color: #415A77;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    background-color: #1B263B;
    color: #E0E1DD;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 15px;
}

.contact-form button:hover {
    background-color: #1B3B5F;
}
