.faq {
    font-family: 'BradescoSans', sans-serif;
    color: #333;
}

.faq__container {
    padding: 80px 0px;
    max-width: 900px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__main-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
    font-family: 'BradescoSans-Regular', sans-serif;
}

.faq__main-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'BradescoSans-Regular', sans-serif;
}

/* FAQ List Common */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 20px 0;
    transition: all 0.3s;
}

.faq__question-text {
    flex: 1 1 auto;
    margin: 0;
}

.faq__icon {
    flex: 0 0 20px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-left: 16px;
    position: relative;
    transition: transform 0.3s;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background-color: #cc092f;
    transition: transform 0.3s;
}

/* Arrow down icon */
.faq__icon::before {
    width: 2px;
    height: 12px;
    left: 9px;
    top: 4px;
    transform: rotate(45deg);
}

.faq__icon::after {
    width: 2px;
    height: 12px;
    right: 2px;
    top: 4px;
    transform: rotate(-45deg);
}

.faq__item.is-active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq__item.is-active .faq__answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq__answer-content {
    padding-bottom: 20px;
    line-height: 1.6;
      a{
        text-decoration: underline;
    }
}

/* Style 1: Lines (Border bottom only) */
.faq--style-1 {
    background-color: #fff;
}

.faq--style-1 .faq__item {
    border-bottom: 1px solid #ddd;
}

.faq--style-1 .faq__question-text {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    font-family: 'BradescoSans-Regular', sans-serif;
    font-weight: 400;
}

.faq--style-1 .faq__answer-content {
    font-size: 16px;
    color: #47484C;
    font-family: 'BradescoSans-Regular', sans-serif;
    font-weight: 400;
}

/* Style 2: Cards (White box with shadow/border) */
.faq--style-2 {
    background-color: #f0f1f5;
}

.faq--style-2 .faq__item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* .faq--style-2 .faq__question-btn {
    padding: 20px 0;
} */

.faq--style-2 .faq__question-text {
    font-size: 20px;
    color: #000;
    font-family: 'BradescoSans-Medium', sans-serif;
    font-weight: 500;
}

.faq--style-2 .faq__answer-content {
    font-size: 16px;
    color: #444;
    border-top: 1px solid #f0f1f5;
    padding-top: 10px;
}

.faq--style-2 .faq__icon::before,
.faq--style-2 .faq__icon::after {
    background-color: #0056b3;
    /* Style 2 uses blue icon in ref */
}

/* Responsive */
@media (max-width: 768px) {
    .faq__main-title {
        font-size: 26px;
    }

    .faq__main-description {
        font-size: 16px;
    }

    .faq--style-1 .faq__question-text,
    .faq--style-2 .faq__question-text {
        font-size: 18px;
    }

    .faq__container {
        padding: 40px 24px;
    }
}
