/* FAQ Page Specific Styles */
.faq-hero {
    background: linear-gradient rgba(62, 46, 46, 0.6), url('../images/faq-bg.jpg') center/cover no-repeat;
    color: rgb(42, 40, 40);
    padding: 100px 0;
    text-align: center;
}

.faq-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.faq-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-container {
    padding: 80px 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background: #f5f5f5;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: #1a73e8;
    color: white;
}

.category-btn:hover:not(.active) {
    background: #e0e0e0;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.faq-answer li::before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.faq-cta {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5f6368;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-hero {
        padding: 80px 0;
    }
    
    .faq-hero h1 {
        font-size: 2.2rem;
    }
    
    .faq-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
    
    .faq-answer.show {
        padding: 0 20px 20px;
    }
}