.faq-container {
    /* background-color: black; */
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    font-family: Formula1;
    transition: background-position 0.3s ease;
}

.head .mm:focus {
    color: #e2fe38;
}

.faq-container h1 {
    font-size: 36px;
    color: #ffffff;
}

.faq-container .decorative-banner {
    border-top: 100px solid transparent; /* Adjust the height of the triangle by changing this value */
    border-right: 100vw solid black; /* Adjust the width of the triangle by changing this value */
    padding-top: 100px;
    border-bottom: none;
}

.faq-container .content {
    display: flex;
    flex-direction: column;
    gap: 77px;
    padding: 0 10%;
    justify-content: center;
    text-align: center;
    background-color: black;
    padding-bottom: 100px;
}

.faq-container .content .content-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.content-accordion .accordion-item {
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    background-color: #252525;
    padding: 30px;
    width: 100%;
    text-align: left;
    transition: height 0.3s;
}

.content-accordion .accordion-header {
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}

.content-accordion .accordion-header .accordion-toggle {
    width: 30px;
    height: 30px;
    font-size: 25px;
    font-weight: bold;
    border-radius: 30px;
}

.content-accordion .accordion-body {
    font-family: Poppins;
    font-size: 17px;
    color: #f4f4f8;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    transition: padding-top 0.3s ease;
    transition: border-top 0.3s ease;
    line-height: 30px;
    letter-spacing: 0px;
}

.accordion-header.active .accordion-toggle .icon.plus {
    display: none;
}

.accordion-header .accordion-toggle .icon.minus {
    display: none;
}

.accordion-header.active .accordion-toggle .icon.minus {
    display: inline-block;
}

.content-accordion .accordion-header.active {
    padding-bottom: 20px;
}

.content-accordion .accordion-header.active + .accordion-body {
    max-height: 1000px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.content-accordion .accordion-header.active + .accordion-toggle {
    font-size: 24px;
}