/* FAQ Accordion Styling */

button {
    background: transparent;
    color: #dedede;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00cc66;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    zbackground: #f0f0f0;
}

.faq-question.active {
    background: linear-gradient(122deg, rgba(174, 238, 189, 0.7) 50%,  rgb(57, 219, 206, 0.7) 100%);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: right;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding: 24px;
    border-top: 2px solid #667eea;
}

.faq-answer p {
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    .faq-container {
        padding: 20px;
    }

    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 16px 16px;
        font-size: 1rem;
    }

    .faq-answer.open {
        padding: 16px;
    }
}
