@charset "utf-8";
/* CSS Document */
/* FAQ Styles */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #8B7355;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #8B7355;
    font-size: 1.2rem;
}

/* Categories */
.faq-category {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-title {
    color: #8B7355;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E8F1FF;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #E8F1FF;
    margin-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-weight: 500;
    color: #27374D;
    font-size: 1.1rem;
    padding-right: 20px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #6BA6FF;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 20px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Hover Effects */
.faq-question:hover span {
    color: #6BA6FF;
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after {
    background-color: #6BA6FF;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-category {
        padding: 20px;
    }
}
