/* style/blog-huong-dan-xem-da-ga-truc-tiep-mien-phi.css */

/* Variables from color scheme */
:root {
    --page-primary-color: #E53935;
    --page-accent-color: #FF5A4F;
    --page-text-main: #333333;
    --page-card-bg: #FFFFFF;
    --page-background: #F5F7FA;
    --page-border-color: #E0E0E0;
    --page-button-gradient: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-text-main); /* Default text color for light background */
    background-color: var(--page-background); /* Default page background */
}

/* Container for content */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--page-background);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 16px;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: var(--page-text-main);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--page-primary-color);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--page-text-main);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-image {
    flex: 1 1 45%;
    text-align: center;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-primary,
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button adapts to container width */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-primary {
    background: var(--page-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-secondary {
    background-color: var(--page-card-bg);
    color: var(--page-primary-color);
    border: 2px solid var(--page-primary-color);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-secondary:hover {
    background-color: var(--page-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__icon-arrow {
    margin-left: 8px;
    font-size: 1.2em;
}

/* Section Titles */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-primary-color);
}

/* Intro Text */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--page-text-main);
}

/* Guide Section */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__guide-section {
    padding: 80px 0;
    background-color: var(--page-background);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    background-color: var(--page-card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-item:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image position */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--page-button-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-title {
    flex: 1 1 auto;
    font-size: 1.6rem;
    color: var(--page-primary-color);
    margin: 0;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-description {
    flex: 1 1 55%;
    font-size: 1rem;
    color: var(--page-text-main);
    margin: 0;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-image {
    flex: 1 1 35%;
    max-width: 400px; /* Limit image size within step */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefits-section {
    padding: 80px 0;
    background-color: var(--page-primary-color); /* Dark background */
    color: #ffffff; /* White text for dark background */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefits-section .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__section-title {
    color: #ffffff; /* White title for dark background */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-card:hover {
    transform: translateY(-5px);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-icon {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px; /* Square images, not round for this section */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-description {
    font-size: 0.95rem;
    color: #f0f0f0;
}

/* FAQ Section */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-section {
    padding: 80px 0;
    background-color: var(--page-background);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-item {
    background-color: var(--page-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--page-border-color);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--page-text-main);
    cursor: pointer;
    background-color: #fcfcfc;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-item[open] .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-question {
    background-color: #f0f0f0;
    border-bottom-color: var(--page-border-color);
    color: var(--page-primary-color);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--page-primary-color);
    margin-left: 15px;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-item[open] .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--page-text-main);
    background-color: var(--page-card-bg);
    border-top: 1px solid var(--page-border-color);
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-answer p {
    margin: 0;
}

/* CTA Bottom Section */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-bottom-section {
    padding: 80px 0;
    background-color: var(--page-primary-color); /* Dark background */
    color: #ffffff; /* White text for dark background */
    text-align: center;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-bottom-section .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__section-title {
    color: #ffffff;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-bottom-section .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__description {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-content-center .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-buttons {
    justify-content: center;
}

/* General image responsive styles */
.page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent extra space below images */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-content {
        flex: 1 1 100%;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-buttons {
        justify-content: center;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-item:nth-child(even) {
        flex-direction: column;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-title {
        text-align: center;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-description {
        flex: 1 1 100%;
        text-align: left;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-card {
        padding: 25px;
    }
}


@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
        padding-bottom: 40px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__hero-container {
        padding: 20px 15px;
        gap: 20px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* CTA Buttons (general for all buttons) */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to button container */
        overflow: hidden !important;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-primary,
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__btn-secondary,
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi a[class*="button"],
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Guide Section */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__guide-section {
        padding: 60px 0;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__intro-text {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__guide-steps {
        gap: 40px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-item {
        padding: 20px;
        flex-direction: column; /* Ensure column layout for steps */
    }
    
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-item:nth-child(even) {
        flex-direction: column; /* Override row-reverse for mobile */
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-title {
        font-size: 1.3rem;
        text-align: center;
        flex: none; /* Remove flex grow */
        width: 100%; /* Take full width */
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-description {
        font-size: 0.95rem;
        flex: none; /* Remove flex grow */
        width: 100%; /* Take full width */
        text-align: left; /* Align text left */
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__step-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 20px;
    }

    /* Benefits Section */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefits-section {
        padding: 60px 0;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefits-grid {
        grid-template-columns: 1fr; /* Single column for benefits */
        gap: 20px;
        padding: 0 15px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-card {
        padding: 20px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-icon {
        max-width: 80px;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__benefit-title {
        font-size: 1.2rem;
    }

    /* FAQ Section */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-section {
        padding: 60px 0;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-toggle {
        font-size: 1.3rem;
    }

    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    /* CTA Bottom Section */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-bottom-section {
        padding: 60px 0;
    }
    
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__cta-bottom-section .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__description {
        padding: 0 15px;
    }

    /* General image and container responsiveness */
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__section,
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__card,
    .page-blog-huong-dan-xem-da-ga-truc-tiep-mien-phi__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}