.faq-page {
    min-height: 100vh;
}

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

/* Page Header Styles */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ List Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

/* FAQ Item Styles */
.faq-item {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    opacity: 0.9;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

/* FAQ Icon */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-icon svg {
    display: block;
}

/* FAQ Answer */
.faq-answer {
    padding: 0 25px 20px 25px;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.faq-answer-content p {
    margin-bottom: 10px;
}

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

/* No FAQs Message */
.no-faqs {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.no-faqs p {
    margin: 0;
    font-size: 16px;
}

/* Contact Section Styles */
.faq-contact {
    text-align: center;
    padding: 50px 30px;
    margin-top: 30px;
}

.faq-contact h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.faq-contact p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Button */
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4361ee, #3a56d4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 14px;
    }
    
    .faq-contact {
        padding: 40px 20px;
    }
    
    .faq-contact h2 {
        font-size: 24px;
    }
    
    .btn-contact {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 15px 12px 15px;
    }
    
    .faq-contact {
        padding: 30px 15px;
    }
    
    .faq-contact h2 {
        font-size: 20px;
    }
    
    .faq-title {
        font-size: 24px;
    }
}

/* Animation for FAQ items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.4s ease forwards;
}

/* Custom scrollbar for FAQ answers */
.faq-answer-content::-webkit-scrollbar {
    width: 6px;
}

.faq-answer-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.faq-answer-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.faq-answer-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}