/* FAQ Section Styles */
.faq-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 120px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    align-items: center;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 880px;
}

.faq-heading {
    font-family: 'IvyOra Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
    line-height: 1;
    color: #ed6a59;
    margin: 0;
}

.faq-heading strong {
    font-family: 'IvyOra Display', serif;
    font-weight: 700;
    font-style: normal;
}

.faq-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #403936;
    margin: 0;
}

.faq-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.faq-item {
    display: flex;
    flex-direction: column;
    background-color: #fffbf8;
    border: 1px solid #d4d2e3;
    border-radius: 12px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item-expanded {
    background-color: #ffffff;
    border-color: #ed6a59;
    gap: 24px;
}

.faq-question {
    display: flex;
    gap: 43px;
    align-items: flex-start;
    justify-content: space-between;
}

.faq-question-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #ed6a59;
    flex: 1;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.faq-chevron {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.faq-item-expanded .faq-chevron {
    transform: scaleY(-1);
}

.faq-answer {
    display: none;
}

.faq-item-expanded .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #403936;
    margin: 0;
}

/* Tablet and Mobile Styles */
@media (max-width: 1200px) {
    .faq-section {
        padding: 0 60px;
    }

    .faq-container {
        flex-direction: column;
    }

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

/* Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 16px;
    }

    .faq-wrapper {
        gap: 40px;
    }

    .faq-header {
        gap: 16px;
    }

    .faq-heading {
        font-size: 24px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question {
        gap: 16px;
    }

    .faq-toggle {
        width: 24px;
        height: 24px;
    }
}
