/* FAQs Page Styles */
.faqs-page {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.faqs-header {
    margin-bottom: 60px;
}

.faqs-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

.faqs-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #f0f7ff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-icon-left {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon-left i {
    color: #2C3E50;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.4;
}

.faq-icon-right {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon-right i {
    color: #2C3E50;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
}

.faq-answer p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faqs-title {
        font-size: 2.75rem;
    }
    
    .faqs-accordion {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .faqs-page {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .faqs-header {
        margin-bottom: 40px;
    }
    
    .faqs-title {
        font-size: 2.25rem;
    }
    
    .faqs-accordion {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .faq-text {
        font-size: 1rem;
    }
    
    .faq-icon-left i {
        font-size: 1.1rem;
    }
    
    .faq-icon-right i {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faqs-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 15px 18px;
        gap: 10px;
    }
    
    .faq-text {
        font-size: 0.95rem;
    }
    
    .faq-icon-left {
        width: 20px;
    }
    
    .faq-icon-right {
        width: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
    }
}
