/* FAQ Section Styles */
.faq-section {
    padding: 1rem 0;
    background: transparent;
}

.fcontainer {
    /*max-width: 1200px;*/
    margin: 0 auto;
    /*padding: 0 1.5rem;*/
    width: 100%;
}

.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.faq-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background-color: #f4f4f4;
}

.faq-item:hover {
    background: #fcfcfc;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-toggle i {
    font-size: 1.2rem;
    color: #666;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 2rem;
}

.faq-answer p {
    margin: 1rem 0 0;
    color: #666;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on content */
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-answer {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1rem 0;
    }
    
    .faq-heading {
        font-size: x-large;
        margin-bottom: 1rem;
    }
    
    .faq-toggle {
        margin-left: 0.5rem;
    }
}