.page-khuynmi {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    padding-bottom: 50px; /* General padding for the bottom */
}

/* Hero Section */
.page-khuynmi__hero-section {
    padding-top: 10px; /* Small top padding as per rules */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-khuynmi__hero-image-wrapper {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* For 1200x675 */
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce min size for display */
    min-height: 200px;
}

.page-khuynmi__hero-content {
    max-width: 800px;
}

.page-khuynmi__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for h1 in hero */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    letter-spacing: -0.5px;
}

.page-khuynmi__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-khuynmi__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Section Titles */
.page-khuynmi__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: #F2FFF6; /* Text Main */
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-khuynmi__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #57E38D; /* Glow */
    border-radius: 2px;
}

/* Promotions List */
.page-khuynmi__promotions-list {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-khuynmi__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-khuynmi__promotion-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #2E7A4E; /* Border */
}

.page-khuynmi__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.page-khuynmi__card-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3; /* For 400x300 display */
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce min size for display */
    min-height: 200px;
}

.page-khuynmi__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-khuynmi__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-khuynmi__card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-khuynmi__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.page-khuynmi__card-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Terms and Conditions Section */
.page-khuynmi__terms-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-khuynmi__terms-content {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-khuynmi__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-khuynmi__terms-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-khuynmi__terms-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

.page-khuynmi__terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow */
    font-weight: bold;
}

.page-khuynmi__terms-link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-khuynmi__terms-link:hover {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-khuynmi__hero-section {
        margin-bottom: 30px;
    }

    .page-khuynmi__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

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

    .page-khuynmi__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-khuynmi__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-khuynmi__promotions-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-khuynmi__promotion-card {
        margin-bottom: 20px;
    }

    .page-khuynmi__card-title {
        font-size: 1.3rem;
    }

    .page-khuynmi__card-description,
    .page-khuynmi__card-button,
    .page-khuynmi__paragraph,
    .page-khuynmi__terms-list li {
        font-size: 0.9rem;
    }
    
    /* Ensure content images don't overflow */
    .page-khuynmi img {
        max-width: 100%;
        height: auto;
    }
}