/* style/blog-huong-dan-dang-ky-mp66.css */

/* Core page styles */
.page-blog-huong-dan-dang-ky-mp66 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: transparent; /* Rely on shared.css body background */
}

/* Hero Section */
.page-blog-huong-dan-dang-ky-mp66__hero-section {
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 60px;
    background-color: #f8f8f8; /* Light background for the hero section itself */
}

.page-blog-huong-dan-dang-ky-mp66__hero-content-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 20px 15px;
}

.page-blog-huong-dan-dang-ky-mp66__text-block {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-blog-huong-dan-dang-ky-mp66__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Clamp for H1 font size */
    color: #C91F17; /* Brand color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-huong-dan-dang-ky-mp66__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555555;
}

.page-blog-huong-dan-dang-ky-mp66__hero-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-blog-huong-dan-dang-ky-mp66__hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: block;
}

/* CTA Buttons */
.page-blog-huong-dan-dang-ky-mp66__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.page-blog-huong-dan-dang-ky-mp66__btn-primary,
.page-blog-huong-dan-dang-ky-mp66__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Ensure padding and border are included in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-huong-dan-dang-ky-mp66__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button color */
    color: #7A0E0E; /* Deep Red for text on gold button */
    border: 2px solid #F4D34D; /* Gold border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-dang-ky-mp66__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-huong-dan-dang-ky-mp66__btn-secondary {
    background-color: #ffffff;
    color: #C91F17; /* Brand color for text */
    border: 2px solid #C91F17; /* Brand color border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-huong-dan-dang-ky-mp66__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #E53935;
    border-color: #E53935;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-blog-huong-dan-dang-ky-mp66__cta-buttons--bottom {
    margin-top: 50px;
    justify-content: center;
}

/* General Content Area */
.page-blog-huong-dan-dang-ky-mp66__content-area,
.page-blog-huong-dan-dang-ky-mp66__guide-section,
.page-blog-huong-dan-dang-ky-mp66__faq-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 60px 15px;
    background-color: #ffffff; /* White background for main content sections */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-blog-huong-dan-dang-ky-mp66__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #C91F17;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-blog-huong-dan-dang-ky-mp66__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD86A 0%, #E6B800 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-huong-dan-dang-ky-mp66 p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #333333;
}

.page-blog-huong-dan-dang-ky-mp66 ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-blog-huong-dan-dang-ky-mp66 ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Features Section */
.page-blog-huong-dan-dang-ky-mp66__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.page-blog-huong-dan-dang-ky-mp66__feature-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #D32F2F; /* Card BG color */
    color: #FFF5E1; /* Text Main color */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-blog-huong-dan-dang-ky-mp66__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-huong-dan-dang-ky-mp66__feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-huong-dan-dang-ky-mp66__feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFD86A; /* Gold color for feature titles */
}

/* Guide Section */
.page-blog-huong-dan-dang-ky-mp66__guide-container {
    padding: 20px 0;
}

.page-blog-huong-dan-dang-ky-mp66__step {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #C91F17;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-blog-huong-dan-dang-ky-mp66__step-title {
    font-size: 1.6em;
    color: #C91F17;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-huong-dan-dang-ky-mp66__step img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* FAQ Section */
.page-blog-huong-dan-dang-ky-mp66__faq-container {
    padding: 20px 0;
}

.page-blog-huong-dan-dang-ky-mp66__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-huong-dan-dang-ky-mp66__faq-item summary {
    list-style: none; /* Remove default marker */
    padding: 20px 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #C91F17; /* Brand color for question */
    font-size: 1.15em;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.page-blog-huong-dan-dang-ky-mp66__faq-item summary:hover {
    background-color: #f0f0f0;
}

.page-blog-huong-dan-dang-ky-mp66__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-blog-huong-dan-dang-ky-mp66__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #E6B800; /* Gold color for toggle icon */
}

.page-blog-huong-dan-dang-ky-mp66__faq-item[open] .page-blog-huong-dan-dang-ky-mp66__faq-toggle {
    transform: rotate(45deg); /* Rotate to form an 'x' or similar */
    color: #C91F17; /* Change color when open */
}

.page-blog-huong-dan-dang-ky-mp66__faq-answer {
    padding: 0 25px 20px;
    color: #555555;
    font-size: 1em;
}

/* Universal image and container responsive styles */
.page-blog-huong-dan-dang-ky-mp66 img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent extra space below images */
}

.page-blog-huong-dan-dang-ky-mp66__content-area,
.page-blog-huong-dan-dang-ky-mp66__guide-section,
.page-blog-huong-dan-dang-ky-mp66__faq-section,
.page-blog-huong-dan-dang-ky-mp66__hero-content-wrapper,
.page-blog-huong-dan-dang-ky-mp66__cta-buttons {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent content overflow */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-huong-dan-dang-ky-mp66__hero-section {
        padding-top: 10px !important; /* Ensure minimal top padding */
        padding-bottom: 40px;
    }

    .page-blog-huong-dan-dang-ky-mp66__hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .page-blog-huong-dan-dang-ky-mp66__text-block,
    .page-blog-huong-dan-dang-ky-mp66__hero-image {
        flex: 1 1 100%;
        min-width: unset;
        width: 100%;
        padding: 0 15px; /* Added padding to text block */
    }

    .page-blog-huong-dan-dang-ky-mp66__main-title {
        font-size: 2em;
        text-align: center;
    }

    .page-blog-huong-dan-dang-ky-mp66__description {
        text-align: center;
        font-size: 1em;
    }

    .page-blog-huong-dan-dang-ky-mp66__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px; /* Add padding to button container */
    }

    .page-blog-huong-dan-dang-ky-mp66__btn-primary,
    .page-blog-huong-dan-dang-ky-mp66__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-blog-huong-dan-dang-ky-mp66__content-area,
    .page-blog-huong-dan-dang-ky-mp66__guide-section,
    .page-blog-huong-dan-dang-ky-mp66__faq-section {
        padding: 30px 15px; /* Adjust padding for mobile */
        margin-bottom: 30px;
    }

    .page-blog-huong-dan-dang-ky-mp66__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-huong-dan-dang-ky-mp66__features {
        flex-direction: column;
        gap: 20px;
    }

    .page-blog-huong-dan-dang-ky-mp66__feature-item {
        flex: 1 1 100%;
        min-width: unset;
        padding: 25px;
    }

    .page-blog-huong-dan-dang-ky-mp66__step {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-blog-huong-dan-dang-ky-mp66__step-title {
        font-size: 1.4em;
    }

    .page-blog-huong-dan-dang-ky-mp66__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-huong-dan-dang-ky-mp66__faq-answer {
        padding: 0 20px 15px;
    }

    /* Mobile image adaptation */
    .page-blog-huong-dan-dang-ky-mp66 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-huong-dan-dang-ky-mp66__content-area,
    .page-blog-huong-dan-dang-ky-mp66__guide-section,
    .page-blog-huong-dan-dang-ky-mp66__faq-section,
    .page-blog-huong-dan-dang-ky-mp66__hero-content-wrapper,
    .page-blog-huong-dan-dang-ky-mp66__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}