body {
    background-image: url('../images/gaF677oBWgSOIYAs4Aa0i - Edited.jpg');
    /* Replace with your image path */
    background-size: cover;
    /* Ensures the image covers the entire page */
    background-position: center;
    /* Centers the image on the page */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-attachment: fixed;
    /* Ensures the background stays fixed while scrolling */
    margin-top: 30px;
    padding: 0;
    font-family: 'Alef', serif;
}

.qa-container {
    margin-top: 50px;
    width: 100%;
    max-width: 800px;
    margin: 15px auto;
    padding-top: 35px;
    padding-bottom: 20px;
    /* Ensure proper bottom padding for the container */
    overflow: hidden;
}

.qa-item {
    width: 100%;
    background-color: #c6ced1;
    margin-bottom: 10px;
    /* Space between each item */
    border-radius: 8px;
    border-color: black;
    border-width: 2px;
    box-sizing: border-box;
}

.qa-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    border: 1px solid #999;
    border-radius: 8px;
    /* Ensure rounded corners for each item */
}

.qa-answer {
    max-height: 0;
    padding: 0 20px;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    background-color: #f6f3f0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.qa-question:after {
    content: '+';
}

.qa-question.active:after {
    content: '-';
}

.qa-question.active+.qa-answer {
    max-height: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Ensuring that the last item is treated properly */
.qa-item:last-child {
    margin-bottom: 20px;
    /* Ensure spacing below the last item */
}

/* Fix possible styling issues related to last child */
.qa-answer:last-child {
    border-bottom: 1px solid #999;
    /* Ensure border for the last answer */
}