.faq-section {
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.faq-title {
    color: #003d82;
    margin: 0;
    font-weight: 700 !important;
    font-size: 50px !important;
    line-height: 60px !important;
    letter-spacing: 0%;
    text-align: center;
    font-family: "UniversLTStd Cn" !important;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 49px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 30px 0px #7A95A44D;
}

.faq-question {
    width: 100%;
    padding: 26px 40px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #003d82;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question__text {
    font-family: "UniversLTStd Cn" !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 28px !important;
    letter-spacing: 0px;
    vertical-align: middle;
    margin-bottom: 0px;
}

.faq-question__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-question__icon {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-question__icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer:not([hidden]) {
    max-height: 1000px;
}

.faq-answer__content {
        padding: 0px 40px 26px;
    color: rgba(12, 35, 64, 1);
    font-family: Univers LT Pro;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 0%;
    vertical-align: middle;
}

.faq-answer__content a{
    color: rgba(0, 78, 168, 1) !important;
    font-weight: 700 !important;
}

.faq-answer__content p {
    margin: 0 0 1rem 0;
}

.faq-answer__content p:last-child {
    margin-bottom: 0;
}

.faq-answer__content a {
    color: #005bb3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer__content a:hover {
    color: #003d82;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer__content {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}