.faq-content {
    padding: 24px;
    margin-top: 8px;
    margin-bottom: 52px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    color: #000000;
}

.faq-title {
    text-align: left;
    font-weight: 800;
    font-size: 40px;
    line-height: 120%;
    font-family: var(--font-secondary);
    vertical-align: middle;
}

.faq-section {
    margin-top: 40px;
}

.faq-accordion {
    border-top: 1px solid #000000;
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid #000000;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}

.faq-header h3 {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.faq-toggle {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-item-content {
    display: none;
    opacity: 0;
    padding: 0 24px 24px 24px;
    margin-top: -8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0px;
    vertical-align: middle;
    transition: opacity 0.3s ease-in-out;
}

.faq-item.active .faq-item-content {
    display: block;
    opacity: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

@media (min-width: 769px) {
    .faq-content {
        font-size: 20px;
    }
}