/* FAQs Page Styles */
.faq-container {
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 2.2em;
    font-weight: 800;
}

.faq-search {
    position: relative;
    margin-bottom: 40px;
}

.faq-search input {
    width: 100%;
    padding: 18px 25px 18px 55px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 1.2em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #333;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: #0d47a1;
}
