.faq-section {
    background-color: #e6f1ff;
    padding: 50px 20px;
}

.faq-title {
    text-align: center;
    color: #007bff;
    font-size: 2em;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-checkbox {
    display: none;
}

.faq-question {
    display: block;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question:after {
    content: "▼";
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.faq-checkbox:checked + .faq-question:after {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    animation: fadeIn 0.5s;
}

.faq-checkbox:checked ~ .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
