* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.prev-btn {
    display: none;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f9;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    
    
    border-radius: 10px;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

h1 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 5px;
}

.progress {
    height: 100%;
    background-color: #3498db;
    border-radius: 5px;
    width: 0%;
}

.progress-text {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.question-page {
    display: none;
}

.question-page.active {
    display: block;
}

h2 {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 15px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

label {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
    color: #2c3e50;
    cursor: pointer;
    background-color: #ecf0f1;
}

label:hover {
    background-color: #d9e4ea;
}

input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.next-btn, .prev-btn, .submit-btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.next-btn:hover, .prev-btn:hover, .submit-btn:hover {
    background-color: #2874a6;
}

.prev-btn {
    background-color: #95a5a6;
    margin-right: 10px;
}

.prev-btn:hover {
    background-color: #7f8c8d;
}

.contact-info label {
    display: block;
    font-size: 14px;
    margin: 10px 0;
    color: #34495e;
}

.contact-info input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #bdc3c7;
    background-color: #ecf0f1;
}

.contact-info input:focus {
    border-color: #3498db;
    outline: none;
    background-color: #ffffff;
}

.footer-links {
    font-size: 12px;
    margin: 20px 0;
    color: #7f8c8d;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #2874a6;
}

.info-text {
    font-size: 12px;
    color: #95a5a6;
}
