.faq-cta-wrapper-cf66426d {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333333;
}

/* Header */
.faq-header-section {
    text-align: center;
    margin-bottom: 50px;
}
.faq-pre-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.faq-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}
.faq-title-decor {
    width: 40px;
    height: 3px;
    background-color: #005a70;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}
.faq-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.faq-card {
    background-color: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-card-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.faq-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f2f7fa;
    color: #005a70;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-card-icon i,
.faq-card-icon svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.faq-card-question {
    font-size: 16px;
    font-weight: 700;
    color: #0c1e36;
    margin: 0;
    padding-right: 24px;
    line-height: 1.4;
}
.faq-toggle-trigger {
    position: absolute;
    right: 24px;
    font-size: 20px;
    font-weight: 400;
    color: #005a70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.faq-toggle-trigger .toggle-icon-minus {
    display: none;
}

/* Open State */
.faq-card.is-active {
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.faq-card.is-active .faq-toggle-trigger .toggle-icon-plus {
    display: none;
}
.faq-card.is-active .faq-toggle-trigger .toggle-icon-minus {
    display: block;
}

/* Answer Area */
.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}
.faq-card.is-active .faq-answer-container {
    max-height: 300px;
}
.faq-card-answer {
    padding: 0 24px 24px 24px;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

/* View All Links */
.faq-view-all-container {
    text-align: center;
    margin-bottom: 60px;
}
.faq-view-all-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #005a70;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.2s ease;
}
.faq-view-all-link:hover {
    color: #0c1e36;
}
.faq-view-all-link:hover .view-all-arrow {
    transform: translateX(4px);
}
.view-all-arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

/* CTA Banner styling matches image perfectly */
.cta-banner-cf66426d {
    background-color: #004d5a;
    background-image: linear-gradient(135deg, #004d5a 0%, #003640 100%);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 77, 90, 0.15);
}
.cta-banner-content {
    display: flex;
    align-items: center;
}
.cta-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 24px;
    flex-shrink: 0;
}
.cta-icon-wrapper i,
.cta-icon-wrapper svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.cta-text-group {
    color: #ffffff;
}
.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.cta-subtitle {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}
.cta-action {
    flex-shrink: 0;
}
.cta-btn {
    background-color: #ffffff;
    color: #004d5a;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}
.cta-btn:hover {
    background-color: #f2f7fa;
    transform: translateY(-2px);
}
.cta-btn-arrow {
    margin-left: 10px;
    font-size: 13px;
}

/* Responsive design */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner-cf66426d {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px;
    }
    .cta-banner-content {
        flex-direction: column;
    }
    .cta-icon-wrapper {
        margin-right: 0;
        margin-bottom: 16px;
    }
}
@media (max-width: 767px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 28px;
    }
}
