/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    height: 20px;
}

.progress {
    background-color: #3498db;
    height: 100%;
    width: 50%;
    border-radius: 20px;
    transition: width 0.3s ease;
}

.questions {
    text-align: left;
    margin: 20px 0;
}

.question {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.options {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.option {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.option:hover {
    background-color: #d9d9d9;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

.icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 20px;
    }

    h2 {
        font-size: 1.2rem;
    }
}
