/* FAQ Section Styling - Matching the design from the image */

.faq-section {
    background: #f8f6f3;
    padding: 80px 0 80px 0;
    position: relative;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2d2926;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #5a5550;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-question:hover {
    background: rgba(201, 169, 110, 0.1);
}

.faq-question.active {
    background: rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid #e8e6e3;
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d2926;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #c9a96e;
    font-weight: 300;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    line-height: 1;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    color: #8b7355;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: transparent;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5a5550;
    line-height: 1.7;
    margin: 0;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-icon {
        font-size: 1.3rem;
        min-width: 25px;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 0 15px 18px 15px;
    }
    
}

/* Animation for smooth accordion effect */
.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #c9a96e;
    outline-offset: -2px;
}

.faq-question:focus-visible {
    outline: 2px solid #c9a96e;
    outline-offset: -2px;
}

/* Newsletter Card styles are now handled by newsletter-section.css */

