.page-blog-how-to-choose-best-nhacai-platform {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: var(--page-bg, #08160F); /* Background, fallback to default */
}

.page-blog-how-to-choose-best-nhacai-platform__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 60px 0;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    overflow: hidden;
}

.page-blog-how-to-choose-best-nhacai-platform__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-blog-how-to-choose-best-nhacai-platform__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-how-to-choose-best-nhacai-platform__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-how-to-choose-best-nhacai-platform__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.page-blog-how-to-choose-best-nhacai-platform__description {
    font-size: clamp(1em, 2vw, 1.2em);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-nhacai-platform__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-best-nhacai-platform__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-nhacai-platform__cta-button--large {
    padding: 15px 40px;
    font-size: 1.3em;
}

.page-blog-how-to-choose-best-nhacai-platform__content-section {
    padding: 60px 0;
    background-color: var(--page-bg, #08160F); /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-best-nhacai-platform__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-choose-best-nhacai-platform__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-how-to-choose-best-nhacai-platform__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2AD16F; /* Main Green */
    border-radius: 2px;
}

.page-blog-how-to-choose-best-nhacai-platform__section-title--white {
    color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-best-nhacai-platform__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
    text-align: justify;
}

.page-blog-how-to-choose-best-nhacai-platform__highlight {
    color: #57E38D; /* Glow */
    font-weight: bold;
}

.page-blog-how-to-choose-best-nhacai-platform__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-nhacai-platform__card {
    background-color: #11271B; /* Card B G */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-how-to-choose-best-nhacai-platform__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-best-nhacai-platform__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-how-to-choose-best-nhacai-platform__card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-nhacai-platform__card-text {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1;
    text-align: justify;
}

.page-blog-how-to-choose-best-nhacai-platform__process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-nhacai-platform__step-card {
    background-color: #11271B; /* Card B G */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc(33% - 20px);
    min-width: 280px;
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog-how-to-choose-best-nhacai-platform__step-title {
    font-size: 1.3em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-nhacai-platform__step-text {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-choose-best-nhacai-platform__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-nhacai-platform__expert-tips {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-nhacai-platform__tip-item {
    background-color: #11271B; /* Card B G */
    border-left: 5px solid #2AD16F;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-best-nhacai-platform__tip-title {
    color: #F2C14E; /* Gold */
    font-size: 1.1em;
    margin-bottom: 5px;
    display: block;
}

.page-blog-how-to-choose-best-nhacai-platform__faq-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 60px 0;
    color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-best-nhacai-platform__faq-list {
    margin-top: 40px;
}

.page-blog-how-to-choose-best-nhacai-platform__faq-item {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-how-to-choose-best-nhacai-platform__faq-item[open] {
    background-color: #0A4B2C; /* Deep Green */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-best-nhacai-platform__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    user-select: none;
    list-style: none;
}

.page-blog-how-to-choose-best-nhacai-platform__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-best-nhacai-platform__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-choose-best-nhacai-platform__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Main Green */
}

.page-blog-how-to-choose-best-nhacai-platform__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-best-nhacai-platform__grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-blog-how-to-choose-best-nhacai-platform__step-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-best-nhacai-platform__main-title {
        font-size: 2.5em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__description {
        font-size: 1em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__section-title {
        font-size: 2em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__text-block {
        font-size: 1em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__grid-layout {
        grid-template-columns: 1fr;
    }
    .page-blog-how-to-choose-best-nhacai-platform__step-card {
        flex: 1 1 100%;
    }
    .page-blog-how-to-choose-best-nhacai-platform__hero-section,
    .page-blog-how-to-choose-best-nhacai-platform__content-section,
    .page-blog-how-to-choose-best-nhacai-platform__faq-section {
        padding: 40px 0;
    }
    .page-blog-how-to-choose-best-nhacai-platform__hero-content {
        padding: 0 15px;
    }
    .page-blog-how-to-choose-best-nhacai-platform__container {
        padding: 0 15px;
    }

    /* Mobile image responsiveness */
    .page-blog-how-to-choose-best-nhacai-platform img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-choose-best-nhacai-platform__section,
    .page-blog-how-to-choose-best-nhacai-platform__card,
    .page-blog-how-to-choose-best-nhacai-platform__container,
    .page-blog-how-to-choose-best-nhacai-platform__hero-section,
    .page-blog-how-to-choose-best-nhacai-platform__content-section,
    .page-blog-how-to-choose-best-nhacai-platform__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile button responsiveness */
    .page-blog-how-to-choose-best-nhacai-platform__cta-button,
    .page-blog-how-to-choose-best-nhacai-platform__btn-primary,
    .page-blog-how-to-choose-best-nhacai-platform__btn-secondary,
    .page-blog-how-to-choose-best-nhacai-platform a[class*="button"],
    .page-blog-how-to-choose-best-nhacai-platform 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-how-to-choose-best-nhacai-platform__cta-buttons,
    .page-blog-how-to-choose-best-nhacai-platform__button-group,
    .page-blog-how-to-choose-best-nhacai-platform__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;
    }

    .page-blog-how-to-choose-best-nhacai-platform__hero-section {
        padding-top: 10px !important; /* Small top padding for hero */
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-choose-best-nhacai-platform__main-title {
        font-size: 2em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__section-title {
        font-size: 1.8em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__cta-button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-blog-how-to-choose-best-nhacai-platform__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-blog-how-to-choose-best-nhacai-platform__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-blog-how-to-choose-best-nhacai-platform__card,
    .page-blog-how-to-choose-best-nhacai-platform__step-card,
    .page-blog-how-to-choose-best-nhacai-platform__tip-item {
        padding: 20px;
    }
}