/* FAQ Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    text-align: left;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
.faq-section h2 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #0e3b35;
    margin-bottom: 10px;
}

/* Intro Text */
.faq-section .intro-text {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Accordion Styles */
.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border: 1px solid #ddd;
}

/* Accordion Header */
.accordion-header {
    background: #ffffff;
    font-size: 18px;
    color: #0e3b35;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease-in-out;
}

.accordion-header:hover {
    background: #e6f5f3;
}

/* Expand/Collapse Icons */
.accordion-header::after {
    content: "➕";
    font-size: 18px;
    color: #0e3b35;
    transition: transform 0.3s ease-in-out;
}

.accordion-item.active .accordion-header::after {
    content: "➖";
    transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    border-top: 1px solid #ddd;
}

/* Smooth transition for opening/closing */
.accordion-item.active .accordion-content {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

/* Keyframes for smooth opening */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Links */
.accordion-content a {
    color: #0e3b35;
    font-weight: 600;
    text-decoration: none;
}

.accordion-content a:hover {
    text-decoration: underline;
}
