.faq-section {
    margin-top: 40px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
}
.faq-question {
    font-weight: bold;
    font-size: 1.1em;
}
.faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
    transition: all 0.3s ease;
    font-weight: bold;
}
.faq-item.active .faq-answer {
    display: block;
}

.faq-item:hover .faq-answer {
    display: block;
}

.faq-question {
    cursor: pointer;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #000;
    margin: 10px auto 0;
}
