.faq-section {
    padding: 40px 15px;
    background-color: #fff;
}

.faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #000;
    text-decoration: underline;
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.faq-question {
    width: 100%;
    background-color: #f5f5f5;
    border: none;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #ebebeb;
}

.faq-q-text {
    font-size: 15px;
    color: #000;
    padding-right: 10px;
    line-height: 1.4;
}

.faq-q-text strong {
    font-weight: 900;
}

.faq-arrow {
    font-size: 20px;
    font-weight: 700;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    color: #333;
    display: inline-block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
    padding: 0 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.faq-item.active .faq-arrow {
    transform: rotate(-90deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

@media (max-width: 800px) {
    .faq-q-text strong {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}