body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: transparent;
    margin: 0;
}

.container {
    background-color: #ffffff;  
    padding: 30px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.section {
    border-bottom: 1px solid #e3e8ee;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.question-title, label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 16px;
    border: 1px solid #e3e8ee;
    border-radius: 5px;
    font-size: 16px;
    color: #2c3e50;
    background-color: #ffffff;
    transition: border 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
    border: 1px solid #bdc3c7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"], input[type="radio"] {
    margin-right: 5px;
}

.button, input[type="button"], input[type="submit"] {
    padding: 10px 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover, input[type="button"]:hover, input[type="submit"]:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

/* Apple-inspired dropdown styling */
.Select-control {
    background-color: #ffffff !important;
    border: 1px solid #e3e8ee !important;
    border-radius: 5px !important;
}

.Select-placeholder {
    color: #bdc3c7 !important;
}

.Select-arrow-zone {
    color: #2c3e50 !important;
}
