/* style/blog-huong-dan-choi-nohu.css */

/* Base styles for the page content */
.page-blog-huong-dan-choi-nohu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on default white body background */
    background-color: #ffffff;
}

/* Hero Section (Main Title and Intro) */
.page-blog-huong-dan-choi-nohu__hero-section {
    padding-top: 10px; /* Small top padding, relying on shared body padding for header offset */
    padding-bottom: 40px;
    background-color: #f8f8f8; /* Light background for this section */
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    text-align: center;
}

.page-blog-huong-dan-choi-nohu__hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-blog-huong-dan-choi-nohu__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    color: #017439; /* Brand primary color */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-huong-dan-choi-nohu__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-huong-dan-choi-nohu__cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    margin-bottom: 30px;
}

.page-blog-huong-dan-choi-nohu__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-blog-huong-dan-choi-nohu__cta-button--primary {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-blog-huong-dan-choi-nohu__cta-button--primary:hover {
    background-color: #005f2c; /* Slightly darker green */
    border-color: #005f2c;
}

.page-blog-huong-dan-choi-nohu__cta-button--secondary {
    background-color: #ffffff;
    color: #017439; /* Brand primary color */
    border: 2px solid #017439;
}

.page-blog-huong-dan-choi-nohu__cta-button--secondary:hover {
    background-color: #e0f0e0; /* Light green hover */
    color: #017439;
}

.page-blog-huong-dan-choi-nohu__cta-button--inline {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.page-blog-huong-dan-choi-nohu__hero-image-container {
    max-width: 100%;
    margin-top: 20px;
    padding: 0 16px;
}

.page-blog-huong-dan-choi-nohu__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* General Content Sections */
.page-blog-huong-dan-choi-nohu__content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 16px;
}

.page-blog-huong-dan-choi-nohu__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #017439;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.page-blog-huong-dan-choi-nohu__content-area p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.page-blog-huong-dan-choi-nohu__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.page-blog-huong-dan-choi-nohu__list li {
    margin-bottom: 10px;
}

.page-blog-huong-dan-choi-nohu__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Guide Section Specifics */
.page-blog-huong-dan-choi-nohu__guide-section {
    background-color: #f0fdf0; /* Lighter green background */
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-blog-huong-dan-choi-nohu__guide-list {
    list-style: none;
    padding: 0;
}

.page-blog-huong-dan-choi-nohu__guide-list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-blog-huong-dan-choi-nohu__guide-list h3 {
    color: #017439;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-blog-huong-dan-choi-nohu__faq-section {
    background-color: #f8f8f8; /* Light background for FAQ */
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-blog-huong-dan-choi-nohu__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-huong-dan-choi-nohu__faq-item {
    background-color: #ffffff;
    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-choi-nohu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #017439;
    font-size: 1.1rem;
    background-color: #fcfcfc;
    user-select: none;
    list-style: none; /* For <summary> tag */
}

.page-blog-huong-dan-choi-nohu__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}
.page-blog-huong-dan-choi-nohu__faq-question::marker {
    display: none; /* Hide default marker for <summary> */
}

.page-blog-huong-dan-choi-nohu__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-huong-dan-choi-nohu__faq-item[open] .page-blog-huong-dan-choi-nohu__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form an X */
}

.page-blog-huong-dan-choi-nohu__faq-answer {
    padding: 0 25px 20px;
    color: #555555;
    font-size: 1rem;
}

.page-blog-huong-dan-choi-nohu__faq-answer p {
    margin-top: 10px;
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-huong-dan-choi-nohu__conclusion {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-blog-huong-dan-choi-nohu__hero-content-wrapper,
    .page-blog-huong-dan-choi-nohu__content-area,
    .page-blog-huong-dan-choi-nohu__faq-list {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 768px) {
    /* HERO 双栏 - adjusted for single column/mobile */
    .page-blog-huong-dan-choi-nohu__hero-section {
        padding-top: 10px !important; /* Specific override for this section */
        padding-bottom: 30px;
    }

    .page-blog-huong-dan-choi-nohu__main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .page-blog-huong-dan-choi-nohu__intro-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-blog-huong-dan-choi-nohu__cta-group {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding: 0 15px; /* Add padding to container */
        width: 100%; /* Ensure container takes full width */
        box-sizing: border-box;
    }

    .page-blog-huong-dan-choi-nohu__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important; /* Allow text to wrap */
        word-wrap: break-word !important; /* Allow long words to break */
        padding: 12px 15px; /* Adjust padding for smaller screens */
        font-size: 0.95rem;
    }
    
    .page-blog-huong-dan-choi-nohu__cta-button--inline {
        max-width: fit-content !important; /* Allow inline buttons to be smaller */
        width: auto !important;
        padding: 8px 12px;
    }

    .page-blog-huong-dan-choi-nohu__hero-image-container {
        padding: 0 15px;
    }

    .page-blog-huong-dan-choi-nohu__hero-image {
        max-width: 100% !important;
        height: auto !important;
    }

    /* 模块1 三栏正圆图 - Placeholder, as not used on this page */
    .page-blog-huong-dan-choi-nohu__icon-box-media {
        width: 200px;
        height: 200px;
        margin: 0 auto 10px;
        padding: 0 !important;
        box-sizing: border-box;
    }
    .page-blog-huong-dan-choi-nohu__icon-box-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 七 Tab 游戏区 - Placeholder, as not used on this page */
    .page-blog-huong-dan-choi-nohu__game-tabs,
    .page-blog-huong-dan-choi-nohu__tab-nav,
    .page-blog-huong-dan-choi-nohu__game-panel {
        padding: 15px;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    /* 教程长文 / 促销 / 信任 / FAQ / 博客 / intro 排版 */
    .page-blog-huong-dan-choi-nohu__content-area {
        padding: 30px 15px; /* Adjust padding for mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-huong-dan-choi-nohu__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-blog-huong-dan-choi-nohu__guide-list li {
        padding: 20px;
    }

    .page-blog-huong-dan-choi-nohu__guide-list h3 {
        font-size: 1.3rem;
    }

    .page-blog-huong-dan-choi-nohu__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-huong-dan-choi-nohu__faq-answer {
        padding: 0 20px 15px;
    }

    /* 通用图片与容器 */
    .page-blog-huong-dan-choi-nohu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-blog-huong-dan-choi-nohu__section,
    .page-blog-huong-dan-choi-nohu__card,
    .page-blog-huong-dan-choi-nohu__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 按钮与按钮容器 */
    .page-blog-huong-dan-choi-nohu a[class*="button"],
    .page-blog-huong-dan-choi-nohu 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-left: 15px;
        padding-right: 15px;
    }
    .page-blog-huong-dan-choi-nohu__button-group,
    .page-blog-huong-dan-choi-nohu__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex; /* Ensure flex context for wrapping */
        flex-direction: column; /* Default to column for multiple buttons */
    }
}