body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 25px;
}

.section h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.input-group label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 20px;
}

.input-group input, .input-group select {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 16px;
    height: 40px;
    box-sizing: border-box;
}

.input-group span {
    font-weight: bold;
    color: #2980b9;
    margin-top: 5px;
}

.note {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 0px;
}

.large-note {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 5px;
}

.total-score {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    font-weight: bold;
    color: #2c3e50;
    font-size: 25px;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .section h2 {
        font-size: 25px;
        margin-top: 20px;
    }

    .input-group input, .input-group select {
        font-size: 14px;
        padding: 8px;
    }

    .note, .error-message {
        font-size: 16px;
        font-weight: normal;
    }

    .total-score {
        font-size: 25px;
    }
}