.page-khuynmi {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* #F2FFF6 */
    background-color: var(--bg-color); /* #08160F */
}

.page-khuynmi__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-khuynmi__section {
    padding: 60px 0;
    text-align: center;
}

.page-khuynmi__hero-section {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: var(--text-main);
    overflow: hidden;
}

.page-khuynmi__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-khuynmi__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-khuynmi__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(8, 22, 15, 0.7); /* Semi-transparent background for text readability */
    border-radius: 10px;
    margin-top: 10px; /* Small top margin for visual separation from header */
}

.page-khuynmi__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold); /* #F2C14E */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-khuynmi__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

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

.page-khuynmi__btn-primary,
.page-khuynmi__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-khuynmi__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
}

.page-khuynmi__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-khuynmi__btn-secondary {
    background: var(--card-bg); /* #11271B */
    color: var(--text-main); /* #F2FFF6 */
    border: 2px solid var(--border); /* #2E7A4E */
}

.page-khuynmi__btn-secondary:hover {
    background: var(--border); /* #2E7A4E */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-khuynmi__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold); /* #F2C14E */
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-khuynmi__text-block {
    font-size: 1.05rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-khuynmi__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

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

.page-khuynmi__promo-card {
    background: var(--card-bg); /* #11271B */
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border); /* #2E7A4E */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-khuynmi__card-title {
    font-size: 1.6rem;
    color: var(--gold); /* #F2C14E */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-khuynmi__card-text {
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-khuynmi__promo-card .page-khuynmi__btn-secondary {
    width: fit-content;
    margin-top: auto;
}

.page-khuynmi__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-khuynmi__step-item {
    background: var(--card-bg); /* #11271B */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    border-left: 5px solid var(--glow); /* #57E38D */
}

.page-khuynmi__step-title {
    font-size: 1.4rem;
    color: var(--text-main); /* #F2FFF6 */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-khuynmi__step-description {
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
}

.page-khuynmi__step-description a {
    color: var(--glow); /* #57E38D */
    text-decoration: none;
}

.page-khuynmi__step-description a:hover {
    text-decoration: underline;
}

.page-khuynmi__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-khuynmi__terms-item {
    background: var(--card-bg); /* #11271B */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: var(--text-secondary); /* #A7D9B8 */
    border-left: 4px solid var(--deep-green); /* #0A4B2C */
}

.page-khuynmi__terms-item strong {
    color: var(--text-main); /* #F2FFF6 */
}

.page-khuynmi__terms-item a {
    color: var(--glow); /* #57E38D */
    text-decoration: none;
}

.page-khuynmi__terms-item a:hover {
    text-decoration: underline;
}

.page-khuynmi__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-khuynmi__benefits-item {
    background: var(--card-bg); /* #11271B */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: var(--text-secondary); /* #A7D9B8 */
    border-top: 5px solid var(--gold); /* #F2C14E */
    font-size: 1.05rem;
    font-weight: 500;
}

.page-khuynmi__benefits-item strong {
    color: var(--text-main); /* #F2FFF6 */
    display: block;
    margin-bottom: 5px;
}

.page-khuynmi__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-khuynmi__faq-item {
    background: var(--card-bg); /* #11271B */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid var(--border);
}

.page-khuynmi__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main); /* #F2FFF6 */
    cursor: pointer;
    background: var(--deep-green); /* #0A4B2C */
    user-select: none;
    transition: background 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-khuynmi__faq-question::-webkit-details-marker {
    display: none;
}

.page-khuynmi__faq-question:hover {
    background: var(--primary-color); /* #11A84E */
}

.page-khuynmi__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-khuynmi__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.page-khuynmi__faq-item[open] .page-khuynmi__faq-toggle {
    transform: rotate(45deg);
}

.page-khuynmi__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    background: var(--card-bg); /* #11271B */
    border-top: 1px solid var(--divider); /* #1E3A2A */
}

.page-khuynmi__faq-answer p {
    margin-bottom: 0;
}

.page-khuynmi__faq-answer a {
    color: var(--glow); /* #57E38D */
    text-decoration: none;
}

.page-khuynmi__faq-answer a:hover {
    text-decoration: underline;
}

.page-khuynmi__cta-final-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--primary-color) 100%); /* #0A4B2C to #11A84E */
    color: var(--text-main);
    border-top: 5px solid var(--gold);
}

.page-khuynmi__cta-final-content {
    max-width: 900px;
}

/* Color contrast sections */
.page-khuynmi__dark-section {
    background-color: var(--deep-green); /* #0A4B2C */
    color: var(--text-main); /* #F2FFF6 */
}

.page-khuynmi__light-bg {
    background-color: var(--bg-color); /* #08160F */
    color: var(--text-main); /* #F2FFF6 */
}

/* Links within content */
.page-khuynmi a:not(.page-khuynmi__btn-primary):not(.page-khuynmi__btn-secondary) {
    color: var(--glow); /* #57E38D */
    text-decoration: underline;
}

.page-khuynmi a:not(.page-khuynmi__btn-primary):not(.page-khuynmi__btn-secondary):hover {
    color: var(--gold); /* #F2C14E */
}

/* Custom colors as variables */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --bg-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-khuynmi__hero-content {
        padding: 30px 15px;
    }
    .page-khuynmi__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-khuynmi__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .page-khuynmi__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-khuynmi__section {
        padding: 40px 0;
    }
    .page-khuynmi__hero-section {
        min-height: auto;
    }
    .page-khuynmi__hero-image-wrapper {
        position: relative;
        height: 200px;
    }
    .page-khuynmi__hero-content {
        padding: 25px 15px;
        margin-top: 20px; /* Adjusted margin for mobile to not overlap header */
        width: 100%;
    }
    .page-khuynmi__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-khuynmi__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-khuynmi__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-khuynmi__btn-primary,
    .page-khuynmi__btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-khuynmi__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-khuynmi__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 20px;
    }
    .page-khuynmi__text-block {
        font-size: 0.95rem;
    }

    /* Images responsive */
    .page-khuynmi img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-khuynmi__image-wrapper,
    .page-khuynmi__container,
    .page-khuynmi__promo-grid,
    .page-khuynmi__steps-list,
    .page-khuynmi__terms-list,
    .page-khuynmi__benefits-list,
    .page-khuynmi__faq-list,
    .page-khuynmi__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-khuynmi__promo-card {
        padding: 20px;
    }
    .page-khuynmi__card-title {
        font-size: 1.4rem;
    }
    .page-khuynmi__step-title {
        font-size: 1.2rem;
    }
    .page-khuynmi__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-khuynmi__faq-toggle {
        font-size: 1.5rem;
    }
    .page-khuynmi__faq-answer {
        padding: 15px 20px;
    }
    .page-khuynmi__hero-content {
        width: 100%;
    }
    .page-khuynmi__hero-section {
        flex-direction: column;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .page-khuynmi__hero-section {
        min-height: auto;
    }
    .page-khuynmi__hero-image-wrapper {
        height: 180px;
    }
    .page-khuynmi__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-khuynmi__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
    .page-khuynmi__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-khuynmi__benefits-list {
        grid-template-columns: 1fr;
    }
}