.faq-root {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 0 1rem;
    background: #fff;
}

.faq-root .h3, 
.faq-root h3 
{
    margin-top: 0;
    margin-bottom: 0;
}

.faq-filters {
    display: flex;
    gap: 0;
    padding: 0 80px;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.faq-tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.faq-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b3924a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-tab-btn:hover {
    color: #333;
}

.faq-tab-btn:hover::after {
    transform: scaleX(0.35);
    opacity: 0.35;
}

.faq-tab-btn.active {
    color: #000;
    font-weight: 600;
}

.faq-tab-btn.active::after {
    transform: scaleX(1);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-tab-btn.leaving::after {
    transform: scaleX(0);
    transform-origin: right center;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1), opacity 0.35s ease;
}

.faq-content-wrapper {
    padding: 60px 80px;
    background-color: #fff;
}

.faq-panel {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.faq-panel.active {
    display: block;
    animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-accordion {
    display: block;
}

.acc-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    background: #fff;
}

.acc-item:hover {
    border-color: #b3924a;
}

.acc-item.open {
    border-color: #b3924a;
}

.acc-question {
    margin: 0;
}

.acc-header {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.acc-header:hover {
    color: #b3924a;
}

.acc-item.open .acc-header {
    color: #b3924a;
    font-weight: 600;
}

.acc-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.acc-icon::before,
.acc-icon::after {
    content: '';
    position: absolute;
    background: #b3924a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.acc-icon::before { width: 100%; height: 1.5px; }
.acc-icon::after  { width: 1.5px; height: 100%; }

.acc-item.open .acc-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0.5, 1);
}

.acc-item.open .acc-body {
    max-height: 1000px;
    transition: max-height 0.6s ease-in-out;
}

.acc-inner p {
    padding: 0 28px 24px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.acc-inner a {
    color: #b3924a;
    text-decoration: none;
}

.acc-inner a:hover {
    text-decoration: underline;
}

.acc-inner ul {
    list-style: unset;
    padding-left: 3rem;
}

@media (max-width: 1024px) {
    .faq-filters,
    .faq-content-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .faq-filters {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: flex-start;
    }

    .faq-tab-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .faq-content-wrapper {
        padding: 40px 20px;
    }

    .acc-header {
        font-size: 14px;
        padding: 18px 20px;
    }

    .acc-inner {
        padding: 0 20px 20px;
        padding-top: 16px;
    }

    .acc-inner p {
        padding: 0.5rem;
    }
}
