body {
    background: #f4f7fa;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 700px;
    background: white;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

h1 {
    text-align: center;
    margin-bottom: 5px;
}

.container h4 {
    text-align: center;
    margin-top: 0;
}

.question {
    margin-bottom: 20px;
    padding: 15px;
    background: #eef3f8;
    border-radius: 10px;
}

.question p {
    font-weight: bold;
}

button {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background: #2d83be;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 550px;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    position: relative;
    animation: appear 0.2s ease-out;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f7f9fb;
    font-size: 15px;
}

.modal-content input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 3px rgba(52,152,219,0.4);
}

/* ✔ checkbox alineado bonito */
.check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px 0;
}

.check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.check label {
    font-size: 15px;
    cursor: pointer;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    margin-top: 10px;
}

.modal-content button:hover {
    background: #2d83be;
}

.close {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}

.question label {
    display: block;
    margin-bottom: 8px;
}

.contact-input-group {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact-input-group select {
    width: 30%; /* Adjust as needed */
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f7f9fb;
    font-size: 15px;
    margin-right: 5px;
}

.contact-input-group input {
    width: 70%; /* Adjust as needed */
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f7f9fb;
    font-size: 15px;
    margin: 0; /* Reset margin as it's handled by the group */
}