/* style/khuyn-mi-faq.css */
.page-khuyn-mi-faq {
    font-family: 'Arial', sans-serif;
    color: #1A2B3C;
    line-height: 1.6;
}

.page-khuyn-mi-faq__hero {
    background: linear-gradient(135deg, #FFD700 0%, #1A2B3C 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-khuyn-mi-faq__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-khuyn-mi-faq__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-khuyn-mi-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-khuyn-mi-faq__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-khuyn-mi-faq__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B3C;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-khuyn-mi-faq__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-khuyn-mi-faq__accordion-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.page-khuyn-mi-faq__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-khuyn-mi-faq__section-title {
    font-size: 2.5em;
    color: #1A2B3C;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
}

.page-khuyn-mi-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-khuyn-mi-faq__accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-khuyn-mi-faq__accordion-header {
    background-color: #1A2B3C;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-khuyn-mi-faq__accordion-header:hover {
    background-color: #2a3b4c;
}

.page-khuyn-mi-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-khuyn-mi-faq__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-khuyn-mi-faq__accordion-body {
    padding: 0 25px;
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-khuyn-mi-faq__accordion-body.active {
    max-height: 1000px; /* Adjust as needed */
    padding: 25px;
}

.page-khuyn-mi-faq__accordion-body p {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.05em;
}

.page-khuyn-mi-faq__accordion-body ol, .page-khuyn-mi-faq__accordion-body ul {
    margin-bottom: 15px;
    padding-left: 25px;
    color: #333;
}

.page-khuyn-mi-faq__accordion-body li {
    margin-bottom: 8px;
    color: #444;
}

.page-khuyn-mi-faq__accordion-body h3 {
    color: #1A2B3C;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-khuyn-mi-faq__inline-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B3C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-khuyn-mi-faq__inline-cta:hover {
    background-color: #e6c200;
}

.page-khuyn-mi-faq__cta-section {
    background-color: #1A2B3C;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-khuyn-mi-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-khuyn-mi-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-khuyn-mi-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-khuyn-mi-faq__cta-button--primary {
    background-color: #FFD700;
    color: #1A2B3C;
}

.page-khuyn-mi-faq__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-khuyn-mi-faq__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-khuyn-mi-faq__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B3C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-khuyn-mi-faq__hero {
        padding: 60px 15px;
    }

    .page-khuyn-mi-faq__hero-title {
        font-size: 2.5em;
    }

    .page-khuyn-mi-faq__hero-subtitle {
        font-size: 1.1em;
    }

    .page-khuyn-mi-faq__section-title {
        font-size: 2em;
    }

    .page-khuyn-mi-faq__accordion-header {
        font-size: 1.1em;
        padding: 18px 20px;
    }

    .page-khuyn-mi-faq__accordion-body {
        padding: 20px;
    }

    .page-khuyn-mi-faq__accordion-body p {
        font-size: 1em;
    }

    .page-khuyn-mi-faq__cta-title {
        font-size: 2em;
    }

    .page-khuyn-mi-faq__cta-description {
        font-size: 1em;
    }

    .page-khuyn-mi-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-khuyn-mi-faq__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-khuyn-mi-faq__hero-title {
        font-size: 2em;
    }

    .page-khuyn-mi-faq__hero-subtitle {
        font-size: 0.95em;
    }

    .page-khuyn-mi-faq__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-khuyn-mi-faq__section-title {
        font-size: 1.8em;
    }

    .page-khuyn-mi-faq__accordion-header {
        font-size: 1em;
        padding: 15px 18px;
    }

    .page-khuyn-mi-faq__accordion-body {
        padding: 15px;
    }

    .page-khuyn-mi-faq__cta-title {
        font-size: 1.8em;
    }
    .page-khuyn-mi-faq__cta-description {
        font-size: 0.9em;
    }
}