 /* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8; /* Light Gray */
    color: #333;
}

/* Header */
header {
    background:  #D8D8D8 #353E55; /* Dark Gray 353E55*/
    color: black;
    text-align: center;
    padding: 1px;
    font-size: 18px;
    font-weight: 400;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
}

/* FAQ Card */
.faq-card {
    background: #D8E3E7;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #D8D8D8; /* Dark Gray */
    color: black;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    font-size: 15px;
    font-weight: 400;
}

/* Plus/Minus Icon */
.icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #f4f4f4; /* Soft Light Gray */
    font-size: 16px;
    border-radius: 0 0 10px 10px;
    color: #222;
    line-height: 1.6;
}

/* Active State */
.faq-card.active .faq-answer {
    display: block;
}

.faq-card.active .icon {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        width: 90%;
    }

    .faq-header {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
