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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-dark);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 1.75rem 0;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .faq-section {
        padding: 80px 0;
    }
}