
/* FAQ Section Styling */
.faq-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.faq-container {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}


.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
}

.faq-answer {
    display: none; /* Hidden by default */
    padding: 10px 0;
    color: #555;
}

.faq-answer p {
    margin: 0;
}

/* Active state for FAQ items */
.faq-item.active .faq-answer {
    display: block; /* Show answer when active */
}

.faq-item.active .toggle-icon {
    content: "-"; /* Change icon to minus when active */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 16px; /* Slightly smaller font size for mobile */
        cursor: pointer;
    }

    .faq-question {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    }



    .faq-answer {
        font-size: 14px; /* Slightly smaller font size for answers */
    }
}