body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.faq-container {
     /* Updated maximum width */
     padding: 60px 0;
}

.faq-heading1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18.26px;
    font-weight: 500;
    color: #2292DF;
    padding-bottom: 20px;
    margin: 0 auto 20px; /* Center the heading vertically and horizontally */
    text-align: center; /* Center the text within the heading */
    letter-spacing: 3px; /* Add 3 pixels of spacing between letters */
    margin-top: 50px;
}

.faq-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 62.61px;
    font-weight: bold;
    color: #0D3B5A;
    padding-bottom: 20px;
    margin: 0 auto 20px; /* Center the heading vertically and horizontally */
    text-align: center; /* Center the text within the heading */
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-family: 'Open Sans', sans-serif;
    font-size: 20.87px;
    font-weight: 500;
    padding: 10px;
    cursor: pointer;
    color: #222222;
    user-select: none;
    position: relative;
    outline: none;
    text-align: left; /* Align the questions to the left */
}

.faq-answer {
    display: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16.87px;
    padding: 10px;
    color: #222222;
    margin-left: 20px; /* Added margin to answer */
    text-align: left; /* Align the answers to the left */
}

.faq-toggle {
    float: left;
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
    color: #87C332;
}
