/* FAQ Section */
.faq-section {
    width: 80%;
    margin: 50px auto;
    font-family: 'Noto Sans Georgian', sans-serif;
}

/* Question Styling */
.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    background-color: #f2f2f235;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

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

/* Answer Box - Hidden by Default */
.faq-answer {
    display: none;
    padding: 15px;
    background-color: #fafafa78;
    border-left: 3px solid #075e54;
    font-size: 16px;
    line-height: 1.6;
}

/* Answer Box - Visible */
.faq-answer.active {
    display: block;
    background-color: #075e540a;
}
