.faq-section {
    background: var(--nike-white);
}

.landing-home .faq-section {
    padding-bottom: 80px;
}

.faq-section .section-title {
    font-size: 36px;
    line-height: 44px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 8px 16px;
    border-bottom: 1px solid #979797;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.landing-home .faq-item:nth-child(n + 5) {
    display: none;
}

.landing-home .faq-list.is-expanded .faq-item:nth-child(n + 5) {
    display: block;
}

.faq-item:hover {
    border-color: var(--nike-section-dark);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--nike-black);
    gap: 24px;
}

.faq-icon-plus {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon-plus::before,
.faq-icon-plus::after {
    content: "";
    position: absolute;
    background-color: var(--nike-black);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Horizontal line */
.faq-icon-plus::before {
    width: 100%;
    height: 2px;
}

/* Vertical line */
.faq-icon-plus::after {
    width: 2px;
    height: 100%;
}

.faq-caret {
    width: 20px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--nike-text-muted);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 16px;
    padding-bottom: 16px;
}

.faq-item.active .faq-icon-plus {
    transform: rotate(45deg);
}

.landing-page .faq-more {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    margin-top: 32px;
    font-size: 20px;
    line-height: 44px;
    font-weight: 500;
    color: var(--nike-section-dark);
    text-align: center;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

/* Rotate caret when expanded */
.landing-page .faq-more .faq-caret {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.landing-page .faq-more.is-expanded .faq-caret {
    transform: rotate(180deg);
}

.faq-page .faq-section {
    padding-bottom: 80px;
}

.faq-contact-wrapper {
    margin-top: 32px;
    padding-top: 24px;
    display: flex;
    justify-content: center;
}

