.faq-modern-section {
    padding: 0.5rem 1rem;
    background-color: #fff;
    font-family: 'Source Sans 3', sans-serif;
}

.faq-support-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq-support-text .contact-link {
    color: #333;
    text-decoration: underline;
    font-weight: 700;
}

.faq-nav-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-cat-link {
    background: none;
    border: none;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-cat-link:hover, .faq-cat-link.active {
    color: #333;
}

.faq-main-display-title {
    font-size: 4rem;
    line-height: 1.1;
    color: #333;
    margin-bottom: 50px;
    font-weight: 400;
}

.faq-main-display-title strong {
    font-weight: 700;
    display: block;
}

.faq-accordion-wrapper {
    margin-top: 20px;
}

.faq-card-modern {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.faq-card-modern:first-child {
    padding-top: 0;
}

.faq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.faq-card-header:hover {
    color: #000;
}

.faq-plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-plus-icon::after {
    content: '+';
}

.faq-card-modern.active .faq-plus-icon::after {
    content: '\2212';
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-card-modern.active .faq-card-body {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.faq-card-body p {
    color: #777;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.d-none {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-main-display-title {
        font-size: 2.5rem;
        margin-top: 40px;
    }
    
    .faq-nav-categories {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .faq-cat-link {
        font-size: 1.2rem;
    }
}

.faq-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .faq-grid-layout .faq-cat-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: #999;
        background: none;
        border: none;
        text-align: left;
        padding: 0;
        cursor: pointer;
        transition: color 0.3s;
    }

        .faq-grid-layout .faq-cat-link.active, .faq-grid-layout .faq-cat-link:hover {
            color: #333;
        }

    .faq-grid-layout .faq-category-group {
        width: 100%;
    }

@@media (min-width: 992px) {
    .faq-grid-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px 40px;
        align-items: start;
    }

        .faq-grid-layout .faq-cat-link {
            grid-column: 1;
        }

        .faq-grid-layout .faq-category-group {
            grid-column: 2;
            grid-row: 1 / span 5;
        }

    .faq-desktop-support {
        grid-column: 1;
        margin-top: 20px;
    }
}

.faq-mobile-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

    .faq-mobile-title span {
        font-weight: 300;
    }



