.service-faq-page .service-faq-hero {
    padding-top: 60px;
    padding-bottom: 18px;
    background: var(--color-white);
}

.service-faq-page .service-faq-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* line-height: 1.05; */
    text-align: center;
    color: var(--color-black);
    letter-spacing: 0.6px;
    margin: 0;
}

.service-faq-page .faq-section {
    padding: 16px 0 60px;
    background: var(--color-white);
}

.service-faq-page .faq-group {
    margin-top: 22px;
}

.service-faq-page .faq-group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    margin: 40px 0 8px;
    /* text-transform: uppercase; */
}

.service-faq-page .faq-item {
    border-top: 1px solid #e2e2e2;
}

.service-faq-page .faq-item:last-child {
    border-bottom: 1px solid var(--color-border);
}

.service-faq-page .faq-question {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    user-select: none;
    transition: color var(--transition-fast);
}

.service-faq-page .faq-question:hover {
    color: var(--color-primary);
}

.service-faq-page .faq-question-text {
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.service-faq-page .faq-item.open .faq-question-text {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.service-faq-page .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform var(--transition-base);
    line-height: 1;
    color: var(--color-text-muted);
}

.service-faq-page .faq-item.open .faq-question::after {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.service-faq-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 1rem;
    color: var(---color-text-muted);
    line-height: 1.7;
    font-family: var(--font-light);
    padding: 0;
}

.service-faq-page .faq-answer > b{
    color: black;
    font-weight: 1000;
}

.service-faq-page .faq-item.open .faq-answer {
    max-height: 480px;
    padding: 0 0 16px;
}

.service-faq-page .inquiry-section-wrapper .inquiry-desc {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .service-faq-page .service-faq-title {
        font-size: 1.8rem;
    }
}
