/* FAQ Section Styles */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fffcfd 0%, #fff5f6 100%);
    position: relative;
    overflow: hidden;
}

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

.faq-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #550216;
    margin: 50px;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d42a44;
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(85, 2, 22, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(85, 2, 22, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(85, 2, 22, 0.1);
    transform: translateY(-2px);
    border-color: rgba(212, 42, 68, 0.2);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #550216;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f6;
    color: #d42a44;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.faq-item.active {
    border-color: rgba(212, 42, 68, 0.3);
}

.faq-item.active .faq-icon {
    background: #d42a44;
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-answer-inner {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}
