@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: #FFFFFF;
    padding: 80px 0;
    width: 100%;
    animation: fadeIn 4s ease-out; 
}

.custom-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.section-header { 
    margin-bottom: 48px; 
    text-align: center;
}

.faq-section .faq-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    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-tag span {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.faq-section .section-title {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 44px;
    color: #000000 !important;
    margin: 0 auto;
    text-align: center;
}

.faq-section .section-description {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin-top: 16px;
    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: 24px 0;
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #000000;
    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 24px 0;
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}

@media (max-width: 1024px) {
    .section-title { font-size: 24px; line-height: 36px; }
    .custom-container { padding: 0 40px; }
}

@media (max-width: 768px) {
    .section-title { font-size: 20px; line-height: 32px; }
    .faq-section .accordion-button { font-size: 16px; }
}