﻿.faq-section {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #f7f7f7;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

    .faq-question::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 1.5em;
    }

.faq-item.open .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #fff;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .faq-title {
        font-size: 1.5em;
    }

    .faq-question,
    .faq-answer {
        font-size: 1em;
    }
}
