.accordion {
    width: 75%;
    margin: 0 auto; /* Center the accordion within the container */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add consistent space between items */
    font-family: 'Arial, sans-serif'; /* Modern font */
}

.accordion-item {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #204ce5; /* Set background color to match the button */
    color: #fff; /* Make text color white to maintain readability */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
}

.accordion-button {
    width: 100% !important;
    background-color: #204ce5; /* Match the accordion-item background */
    color: #fff;
    padding: 15px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start !important; /* Align content to the left */
    box-sizing: border-box; /* Include padding and border in the button's width calculation */
}

.accordion-content {
    display: none;
    padding: 15px 20px;
    background-color: #f1f4ff; /* Light background color for contrast */
    color: #000; /* Black text for better readability */
}

.question-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.question-item label {
    width: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question-item input[type="checkbox"] {
    margin-right: 15px !important; /* Increased margin to create more space between checkbox and label */
}

.question-item span {
    padding-left: 10px; /* Added padding to ensure spacing between checkbox and text */
}

.accordion-button::after {
    content: '\002B'; /* Unicode character for "+" */
    color: #fff;
    font-weight: bold;
    margin-left: auto;
}

.accordion-button.active::after {
    content: '\2212'; /* Unicode character for "−" */
}
