/* style/mt-chc.css */
.page-mt-chc {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-mt-chc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-mt-chc__hero {
    background: linear-gradient(135deg, #FFD700 0%, #00008B 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.page-mt-chc__hero .page-mt-chc__container {
    position: relative;
    z-index: 2;
}

.page-mt-chc__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700; /* Ensure high contrast */
}

.page-mt-chc__title .highlight {
    color: #fff;
}

.page-mt-chc__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

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

.page-mt-chc__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-mt-chc__btn--primary {
    background-color: #FFD700;
    color: #00008B; /* Dark text on bright background */
    border: 2px solid #FFD700;
}

.page-mt-chc__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-mt-chc__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-mt-chc__btn--secondary:hover {
    background-color: #FFD700;
    color: #00008B; /* Dark text on bright background */
    transform: translateY(-3px);
}

.page-mt-chc__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-mt-chc__section:nth-of-type(even) {
    background-color: #f0f0f5;
}

.page-mt-chc__section-title {
    font-size: 2.5em;
    color: #00008B;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-mt-chc__section-title .highlight {
    color: #FFD700;
}

.page-mt-chc__sub-title {
    font-size: 1.8em;
    color: #00008B;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-mt-chc__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-mt-chc__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-mt-chc__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

.page-mt-chc__text-content p {
    margin-bottom: 15px;
}

.page-mt-chc__text-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-mt-chc__text-content li {
    margin-bottom: 8px;
}

.page-mt-chc__text-content a {
    color: #00008B;
    text-decoration: none;
    font-weight: bold;
}

.page-mt-chc__text-content a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-mt-chc__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-mt-chc__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-mt-chc__variation-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-mt-chc__variation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-mt-chc__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-mt-chc__card-title {
    font-size: 1.5em;
    color: #00008B;
    margin-bottom: 10px;
}

.page-mt-chc__card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-mt-chc__card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700;
    color: #00008B; /* Dark text on bright background */
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-mt-chc__card-btn:hover {
    background-color: #e6c200;
}

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

.page-mt-chc__feature-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-mt-chc__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-mt-chc__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-mt-chc__feature-title {
    font-size: 1.6em;
    color: #00008B;
    margin-bottom: 10px;
}

.page-mt-chc__feature-description {
    font-size: 1em;
    color: #555;
}

.page-mt-chc__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

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

.page-mt-chc__offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-mt-chc__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-mt-chc__offer-card .page-mt-chc__card-image {
    height: 200px;
    object-fit: contain;
}

.page-mt-chc__download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-mt-chc__btn--download {
    background-color: #00008B;
    color: #FFD700;
    border: 2px solid #00008B;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
}

.page-mt-chc__btn--download img {
    width: 24px;
    height: 24px;
}

.page-mt-chc__btn--download:hover {
    background-color: #00006b;
    color: #fff;
    border-color: #00006b;
}

.page-mt-chc__faq .page-mt-chc__accordion {
    margin-top: 40px;
}

.page-mt-chc__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-mt-chc__accordion-header {
    background-color: #FFD700;
    color: #00008B; /* Dark text on bright background */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-mt-chc__accordion-header:hover {
    background-color: #e6c200;
}

.page-mt-chc__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-mt-chc__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-mt-chc__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #f9f9f9;
    color: #444;
}

.page-mt-chc__accordion-content p {
    padding: 15px 0;
    margin: 0;
}

.page-mt-chc__accordion-content a {
    color: #00008B;
    text-decoration: none;
    font-weight: bold;
}

.page-mt-chc__accordion-content a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-mt-chc__accordion-header.active + .page-mt-chc__accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-mt-chc__call-to-action {
    background: linear-gradient(135deg, #00008B, #FFD700);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-mt-chc__call-to-action .page-mt-chc__section-title {
    color: #fff;
    font-size: 3em;
}

.page-mt-chc__call-to-action .page-mt-chc__subtitle {
    color: #eee;
    margin-bottom: 50px;
}

.page-mt-chc__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-mt-chc__title {
        font-size: 2.8em;
    }
    .page-mt-chc__section-title {
        font-size: 2em;
    }
    .page-mt-chc__sub-title {
        font-size: 1.5em;
    }
    .page-mt-chc__content-wrapper {
        flex-direction: column;
    }
    .page-mt-chc__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-mt-chc__hero {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .page-mt-chc__title {
        font-size: 2.2em;
    }
    .page-mt-chc__subtitle {
        font-size: 1.1em;
    }
    .page-mt-chc__cta-buttons {
        flex-direction: column;
    }
    .page-mt-chc__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-mt-chc__section-title {
        font-size: 1.8em;
    }
    .page-mt-chc__sub-title {
        font-size: 1.3em;
    }
    .page-mt-chc__hero {
        padding: 60px 0;
    }
    .page-mt-chc__download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-mt-chc__btn--download {
        width: 80%;
        max-width: 280px;
    }
    .page-mt-chc__call-to-action .page-mt-chc__section-title {
        font-size: 2.2em;
    }
    .page-mt-chc__btn--large {
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .page-mt-chc__title {
        font-size: 1.8em;
    }
    .page-mt-chc__subtitle {
        font-size: 1em;
    }
    .page-mt-chc__section-title {
        font-size: 1.5em;
    }
    .page-mt-chc__sub-title {
        font-size: 1.2em;
    }
    .page-mt-chc__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-mt-chc__accordion-content {
        padding: 0 20px;
    }
    .page-mt-chc__accordion-header.active + .page-mt-chc__accordion-content {
        padding: 15px 20px;
    }
    .page-mt-chc__call-to-action .page-mt-chc__section-title {
        font-size: 1.8em;
    }
}