

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.faq-title-bar {
    width: 40px;
    height: 2px;
    background: #1a1a1a;
    margin: 20px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.faq-icon {
    font-size: 24px;
    color: #999;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer.open {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.35s ease;
}

.faq-answer.open .faq-answer-inner {
    padding-bottom: 20px;
}

/*search*/