@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body {
    margin: 0;
    background-color: #DBDFF4;
    height: 100vh;
    overflow: hidden;
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 92vh;
}

section {
    margin: auto;
    width: 75vw;
    height: 75vh;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}

#intro-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 70px;
}

.title-page h1 {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 20;
    line-height: 1.2;
    text-align: left;
}

.title-page h1 .highlight {
    font-weight: bold;
}

.subtitle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.subtitle {
    color: var(--color-primary);
    max-width: 55%;
    text-align: left;
    margin: 0;
}

#content-section {
    overflow-y: auto;
    margin-inline: 70px;
    padding-right: 16px;
}

.faq-container {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 70px;
}

.faq-column {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid white;
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 25px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    color: var(--color-primary);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.butterfly-icon {
    width: 24px;
    height: auto;
}

.faq-question .quote-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .quote-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    color: #444;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-item.default-open .faq-answer {
    max-height: none;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-item,
.faq-question,
.faq-answer {
    font-family: 'Figtree', sans-serif;
}

@media only screen and (max-width: 1100px) {
    body {
        overflow: auto;
    }

    #intro-section {
        align-items: center;
        margin: 40px;
    }

    #content-section {
        margin: 0px 40px 40px;
    }

    .title-page h1 {
        text-align: center;
    }

    .subtitle-container {
        flex-direction: column;
        gap: 30px;
    }

    .subtitle {
        text-align: center;
        max-width: none;
    }

    .faq-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0px;
    }

    .faq-column {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    body {
        overflow-x: hidden;
        font-size: 16px;
    }

    #intro-section {
        margin: 16px;
    }

    .title-page h1 {
        font-size: 27px;
        margin: 18px 0;
        text-align: center;
    }

    #content-section {
        margin: 16px;
        padding-right: 0px;
    }

    section {
        height: 80vh;
        width: 92vw;
        border-radius: 18px;
    }

    .faq-question {
        font-size: 16px;
    }
}