/* Form styles */
.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 40px;
}
h1 {
    color: #01135f;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5em;
}
form {
    display: grid;
    gap: 25px;
}
label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #555;
}
input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #01135f;
    box-shadow: 0 0 0 2px rgba(0,119,190,0.2);
}
textarea {
    height: 150px;
    resize: vertical;
}

.button-whatsapp{
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .header-content {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    nav ul li {
        margin: 10px 0;
    }
    h1 {
        font-size: 2em;
    }
    .form-container {
        padding: 30px;
    }
}