#faq {
    background-color: #24292f !important;
    padding: 50px 20px;
    color: white;
    font-family: "Roboto";
    min-height: 400px !important; /* Adjust based on your content needs */
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 40px;
}

.faq-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 40px;
}

.accordion .card {
    margin-bottom: 10px;
    background-color: #24292f;
    border: none;
}

.accordion .card-header {
    background-color: #24292f;
    color: white;
    border: none;
    padding: 10px 20px;
}

.accordion .faq-question {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    width: calc(100% - 40px); /* Ensures space for the toggle */
    text-align: left;
    display: flex;
    align-items: center;
    word-wrap: break-word;
    padding-right: 40px; /* Padding to accommodate the toggle button */
    cursor: pointer; /* Indicate clickable text */
}

.accordion .faq-question:hover {
    text-decoration: none;
}

.accordion .collapse {
    background-color: #24292f;
    color: white;
    padding: 10px 20px;
    border-top: 1px solid #24292f;
}

/* Divider line between FAQ items */
.faq-divider {
    border: 0;
    height: 2px;
    background: white;
    margin: 10px 0;
}

/* FAQ Toggle Indicator */
.faq-toggle {
    font-size: 1.5rem; /* Adjust the size of the "+" */
    color: white; /* Ensure the "+" color matches */
    cursor: pointer; /* Indicate clickable text */
}

/* Ensures the "+" text does not change color when clicked */
.faq-toggle:focus,
.faq-toggle:hover {
    color: white; /* Keeps the "+" color consistent */
    outline: none; /* Removes the outline on focus */
}
