/* ===================================
   FAQ Section Styles
   =================================== */

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
}

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

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 40px;
    }
}

.faq-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-family: var(--font-family-elegant);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
    }
}

.faq-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-subtitle {
        font-size: 16px;
    }
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 24px;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .faq-question-text {
        font-size: 16px;
    }
}

.faq-icon {
    font-size: 24px;
    color: var(--brand-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

.faq-answer-content strong {
    color: var(--gray-700);
    font-weight: 600;
}

.faq-answer-list {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer-list li {
    margin: 8px 0;
    list-style: none;
    position: relative;
}

.faq-answer-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--brand-color);
    font-weight: bold;
}