html {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.faqs {
    padding-top: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqs > .description {
    font-family: "Brother 1816";
    color: var(--blue);
    line-height: 22px;
    letter-spacing: 0;
    max-width: 460px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.faqs > .title {
    font-family: "PNA Solarithm";
    font-size: 49px;
    line-height: 65px;
    color: var(--blue);
}
.faq-container {
    width: 75%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1.6px solid #cbd7de;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-family: "Brother 1816";
    font-weight: 350;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--blue);
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: #7a9aae;
    text-align: left;
    font-family: "Brother 1816";
    font-weight: 300;
}

.toggle-icon {
    font-size: 25px;
    width: 14px;
    font-weight: 300;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg); /* Rotates clockwise */
    color: var(--blue); /* Optional: Changes color when active */
}

.slogan-faq {
    color: var(--cinzaClaro);
    font-family: "PNA Solarithm";
    font-size: 60px;
    text-align: center;
    letter-spacing: 1px;
    padding-bottom: 150px;
    padding-top: 120px;
}

.slogan-faq > p > span {
    font-family: "PNA Solarithm Book";
}

.question {
    padding-right: 10px;
}

@media only screen and (max-width: 725px) {
    .faq-question {
        font-size: 16px;
    }

    .faqs > .description {
        margin-right: 30px;
        margin-left: 30px;
    }

    .faq-container {
        width: 100%;
        padding-right: 30px;
        padding-left: 30px;
    }

    .slogan-faq {
        padding-bottom: 0;
    }
}
