/* FAQ Page Styles */
body {
    font-family: 'Montserrat Alternates', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* FAQ Header Section */
.faq-header {
    background-color: #aeb57c;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.faq-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-header p {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* FAQ Content */
.faq-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Category */
.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    background-color: #aeb57c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
}

/* FAQ Item */
.faq-item {
    background-color: #f1f5f9;
    border-left: 5px solid #aeb57c;
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.faq-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    margin-top: 10px;
    font-size: 1rem;
    display: none; /* Hidden by default */
}

/* Open FAQ (JS toggle effect) */
.faq-item.open p {
    display: block; /* Show content when active */
}

.faq-item.open h3::after {
    content: "-";
    font-weight: bold;
}

.faq-item h3::after {
    content: "+";
    font-weight: bold;
    font-size: 1.2rem;
    color: #aeb57c;
    margin-left: 10px;
}

/* Links */
a {
    color: #aeb57c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-content {
        padding: 15px;
    }

    .faq-item {
        padding: 12px 15px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}

