.page-khuynmi__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-color, #F4F7FB);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-khuynmi__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.page-khuynmi__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-khuynmi__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-khuynmi__main-title {
    color: var(--text-main-color, #1F2D3D);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.page-khuynmi__description {
    color: var(--text-main-color, #1F2D3D);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-khuynmi__cta-button {
    display: inline-block;
    background: var(--button-color, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__promotions-grid {
    background-color: var(--background-color, #F4F7FB);
    padding: 60px 20px;
    text-align: center;
}

.page-khuynmi__section-title {
    color: var(--text-main-color, #1F2D3D);
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.page-khuynmi__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-khuynmi__promo-card {
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #D6E2FF);
}

.page-khuynmi__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-khuynmi__card-image {
    width: 100%;
    height: 200px; /* Minimum height for content images */
    object-fit: cover;
    display: block;
}

.page-khuynmi__card-title {
    color: var(--text-main-color, #1F2D3D);
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 20px 10px 20px;
    line-height: 1.4;
}

.page-khuynmi__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-khuynmi__card-title a:hover {
    color: var(--primary-color, #2F6BFF);
}

.page-khuynmi__card-text {
    color: var(--custom-color-1776249996415, #000000);
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-khuynmi__card-button {
    display: inline-block;
    background: var(--button-color, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    margin: 0 20px 20px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-khuynmi__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__faq-section {
    background-color: var(--background-color, #F4F7FB);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-khuynmi__faq-item {
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #D6E2FF);
}

.page-khuynmi__faq-question {
    color: var(--text-main-color, #1F2D3D);
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-khuynmi__faq-answer {
    color: var(--custom-color-1776249996415, #000000);
    font-size: 1em;
    line-height: 1.6;
}

.page-khuynmi__view-all-faq-button {
    display: inline-block;
    background: var(--button-color, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    margin-top: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__view-all-faq-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__cta-section {
    background-color: var(--primary-color, #2F6BFF);
    padding: 60px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-khuynmi__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-khuynmi__cta-title {
    color: #FFFFFF;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-khuynmi__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .page-khuynmi__main-title {
        font-size: 1.8em;
    }

    .page-khuynmi__description {
        font-size: 1em;
    }

    .page-khuynmi__section-title {
        font-size: 1.8em;
    }

    .page-khuynmi__grid-container {
        grid-template-columns: 1fr;
    }

    .page-khuynmi__card-image {
        height: 250px;
    }

    .page-khuynmi__cta-title {
        font-size: 1.8em;
    }

    .page-khuynmi__cta-description {
        font-size: 1em;
    }

    /* Ensure all images in content area are responsive and not too small */
    .page-khuynmi img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Ensure images are not displayed smaller than 200px */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-khuynmi__main-title {
        font-size: 1.5em;
    }

    .page-khuynmi__section-title {
        font-size: 1.5em;
    }

    .page-khuynmi__cta-title {
        font-size: 1.5em;
    }

    .page-khuynmi__cta-button, .page-khuynmi__card-button, .page-khuynmi__view-all-faq-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}