.faq-section {
    padding: 40px 0px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-heading {
    font-size: 28px !important;
    text-align: center;
    margin-bottom: 30px !important;
    color: #222 !important;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px !important;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background-color: #eef6f3;
}

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

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

.faq-answer p {
    margin: 15px 0;
    font-size: 16px;
    color: #333;
}