.faq-accordion {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #ffffff;
    color: #333333;
    padding: 15px 50px 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #0070a8;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    background-color: #ffffff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px; /* Adjust this value based on your content */
}

