/* FAQ Modern CSS */
.faq-u-s-p-y-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-u-s-p-b-60 {
    padding-bottom: 60px;
}

.faq-u-s-m-b-30 {
    margin-bottom: 30px;
}

.faq-section__content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-breadcrumb {
    margin-bottom: 30px;
}

.faq-breadcrumb__list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-breadcrumb__list li {
    margin-right: 10px;
    position: relative;
}

.faq-breadcrumb__list li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: #999;
}

.faq-breadcrumb-link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.faq-breadcrumb-link:hover {
    color: #007bff;
}

.faq-is-marked .faq-breadcrumb-link {
    color: #007bff;
    font-weight: 600;
}

.faq-has-separator {
    /* Style for breadcrumb separator */
}

.faq-faq {
    text-align: center;
    margin-bottom: 40px;
}

.faq-faq__heading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-faq__text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.faq-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-faq__question {
    display: block;
    padding: 20px 25px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-faq__question::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-faq__question:not(.collapsed) {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.faq-faq__question:not(.collapsed)::after {
    content: "-";
    transform: translateY(-50%) rotate(180deg);
}

.faq-faq__question:hover {
    background: #e9ecef;
}

.faq-faq__question:not(.collapsed):hover {
    background: #0069d9;
}

.faq-faq__answer {
    padding: 0 25px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: -15px;
    margin-bottom: 30px;
}

.faq-faq__answer.collapse:not(.show) {
    display: none;
}

.faq-faq__answer.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.faq-faq__answer .faq-faq__text {
    margin: 20px 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section__content {
        padding: 20px 15px;
    }

    .faq-faq__heading {
        font-size: 24px;
    }

    .faq-faq__question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .faq-faq__question::after {
        right: 20px;
    }
}