/* FAQ Accordion Item */
.accordion .accordion-item {
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
}

/* Question Title */
.accordion .accordion-title {
    display: block;
    padding: 15px 20px;
    font-weight: bold;
    color: #2c3e50;
    background-color: #e0e0e0;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.accordion .accordion-title:hover {
    background-color: #d5d5d5;
    color: #FFF;
}

/* Answer Content */
.accordion .accordion-content {
    padding: 15px 20px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Active Accordion Styling */
.accordion .accordion-item.is-active > .accordion-title {
    background-color: #006E62;
    color: white !important;
}

.accordion .accordion-item.is-active > .accordion-content {
    background-color: #ecf6fd;
}


.accordion .accordion-title::before {
    content: "➤";
    margin-right: 10px;
    color: #555;
    transition: transform 0.3s ease;
}

.accordion .accordion-item.is-active .accordion-title::before {
    transform: rotate(90deg);
    color: #fff;
}

.faq-title {
    text-align: center;          /* centers the heading */
    background: #f0f8f5;         /* light background color */
    padding: 25px 0;             /* spacing above and below */
    border-radius: 10px;         /* rounded corners */
    margin: 20px auto;           /* space around the box */
    max-width: 100%;            /* keeps it neat */
    box-shadow: 0 3px 12px rgba(0,0,0,0.1); /* subtle shadow */
}

.faq-title h1 {
    font-size: 2rem;
    color: #2c3e50;              /* dark clean color */
    margin: 0;
}


