* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.question-box {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f3f3f3;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #0056b3;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.option {
    flex-basis: 45%;
    display: block;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.option:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fafafa;
}

.option img.option-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.total-price {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
