/* Title Section Styles */
.title-section {
    border-bottom: 1px solid #e9e9e9;
    background: #f8f9f9;
    padding: 20px 0;
}

.title-wrapper {
    margin: 0 6%;
}

.main-heading {
    font-size: 35px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .main-heading {
        font-size: 26px;
    }

    .title-section {
        padding: 30px 15px;
    }
}

.faq-section {
    padding: 30px 0;
}

.faq-container {
    margin: 0 6%;
}

/* FAQ Item - default (closed) state */
.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px;
    background-color: #6DAB3C;
    transition: background-color 0.3s, color 0.3s;
}

/* FAQ Item - open state */
.faq-item.open {
    background-color: #f0f0f0;
    color: #333;
}

/* FAQ Question styling */
.faq-question {
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding-left: 25px; /* space for left icon */
    color: white;
    transition: color 0.3s;
}

/* + icon on left by default */
.faq-question::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: white;
    transition: color 0.3s;
}

/* When open, show - icon and change color */
.faq-item.open .faq-question::before {
    content: '-';
    color: black;
}

.faq-item.open .faq-question {
    color: black;
}

/* Answer content */
.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    padding: 1%;
    line-height: 1.6;
}

/* Show answer when open */
.faq-item.open .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

.centered-img {
    text-align: center;
}

.centered-img img {
    border-radius: 10px;
}