/* FAQ Page Styles */

.faq-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/uploads/placeholder.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.faq-intro-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.faq-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.faq-intro-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-intro-text a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

/* Accordion Styles */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.accordion-header {
    width: 100%;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f8f8;
}

.accordion-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.accordion-header i {
    color: #3498db;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-header.active {
    background-color: #f8f8f8;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.accordion-content p {
    padding: 1rem 1.2rem 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .accordion-header span {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}
