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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    background-color: var(--Color-Base-White);
    padding: var(--space-80) 0;
    width: 100%;
    animation: fadeIn 4s ease-out;
}

.faq-section .custom-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-80);
}

.faq-section .section-header {
    margin-bottom: var(--space-48);
    text-align: center;
}

.faq-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: 10px;
}

.faq-tag img {
    width: 19px !important;
    height: 29px !important;
    flex-shrink: 0 !important;
    aspect-ratio: 19 / 29 !important;
    object-fit: contain !important;
}

.faq-section .section-title {
    color: var(--Text-Base-Black);
    text-align: center;
    margin: 0 auto;
}

.faq-section .section-description {
    color: var(--Text-Base-Black);
    margin-top: var(--space-16);
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.faq-section .accordion-item {
    border-top: none;
    border-bottom: 1px solid #EAECF0;
    background-color: transparent;
}

.faq-section .accordion-button {
    padding: var(--space-24) 0;
    color: var(--Text-Base-Black);
    background-color: transparent !important;
    box-shadow: none !important;
    text-align: left;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px;
    width: 20px;
    height: 20px;
}

.faq-section .accordion-body {
    padding: 0 0 var(--space-24) 0;
    color: var(--Text-Base-Black);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .faq-section .custom-container {
        padding: 0 var(--space-24) !important;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: var(--space-48) 0 !important;
    }

    .faq-section .custom-container {
        padding: 0 var(--space-16) !important;
    }

    .faq-section .section-title {
        font-size: var(--Typography-Heading-H3-H3-size) !important;
        line-height: var(--Typography-Heading-H3-H3-lh) !important;
    }
}