/* --- FAQ Section Styles --- */
.faq-section {
    padding: 80px 20px;
    background-color: #F9F9F9; 
    font-family: "Poppins", sans-serif;
}

.faq-section .container {
    max-width: 800px; 
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #2E2E72;
    margin-bottom: 15px;
}

.faq-header h2 span {
    color: #ff4f81;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    border-left: 5px solid transparent; 
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-color: #2E2E72; 
    transform: translateX(5px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E2E72;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff4f81;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2E2E72;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active {
    border-left-color: #2E2E72; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); 
    color: #2E2E72;
}

.faq-item.active .faq-answer {
    max-height: 200px; 
    padding-bottom: 10px; 
}