/* General Body and Container Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    text-align: center;
}

.logo {
    max-width: 150px;
}

/* Main Content and Form Styles */
main {
    padding: 40px 0;
}

#form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-step h2 {
    color: #0056b3;
    margin-bottom: 25px;
    text-align: center;
}

.radio-group,
.checkbox-group {
    margin-bottom: 20px;
}

.radio-group label,
.checkbox-group label {
    display: block;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #007bff;
}

.radio-group label:hover,
.checkbox-group label:hover {
    background-color: #e9f2ff;
}

.radio-group input[type="radio"]:checked + label,
.checkbox-group input[type="checkbox"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #218838;
}

.safe-secure {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    text-align: justify;
}

.disclaimer a,
.checkbox-group label a {
    color: #007bff;
    text-decoration: none;
}

.disclaimer a:hover,
.checkbox-group label a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: left;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .logo {
        max-width: 120px;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

.slider-group {
    margin-bottom: 20px;
    text-align: center;
}

.slider-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.slider-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    background: #ddd;
    outline: none;
    border-radius: 5px;
    margin: 10px 0;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
}

.slider-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
}

.slider-group p {
    font-size: 1.2em;
    font-weight: bold;
    color: #0056b3;
}
