.faq-section {
  font-family 'Arial', sans-serif;
  line-height 1.6;
  background-color #f9f9f9;
  color #333;
}

.faq-section header {
  background #2c3e50;
  color #fff;
  text-align center;
  padding 2rem 0;
  margin-bottom 2rem;
}
 
/* FAQ Categories */
.faq-category {
    margin-bottom: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.faq-category h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Items */
.faq-item {
    margin: 1rem 0;
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #e74c3c;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0.5rem;
}

.faq-answer p, .faq-answer ul {
    margin: 0.8rem 0;
}

.faq-answer ul {
    padding-left: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #2c3e50;
    color: #fff;
    margin-top: 2rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .faq-category {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}