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

/* Base styles */
.page-blog-huong-dan-dang-ky-pp88 {
    font-family: Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff; /* Default body background is white, so dark text is chosen */
}

/* Hero Section */
.page-blog-huong-dan-dang-ky-pp88__hero-section {
    padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
    padding-bottom: 60px;
}

.page-blog-huong-dan-dang-ky-pp88__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 30px;
}

.page-blog-huong-dan-dang-ky-pp88__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
}

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

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

.page-blog-huong-dan-dang-ky-pp88__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-huong-dan-dang-ky-pp88__btn-primary,
.page-blog-huong-dan-dang-ky-pp88__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-blog-huong-dan-dang-ky-pp88__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-blog-huong-dan-dang-ky-pp88__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

.page-blog-huong-dan-dang-ky-pp88__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-huong-dan-dang-ky-pp88__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

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

.page-blog-huong-dan-dang-ky-pp88__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* General Content Area */
.page-blog-huong-dan-dang-ky-pp88__content-area,
.page-blog-huong-dan-dang-ky-pp88__guide-section,
.page-blog-huong-dan-dang-ky-pp88__promo-section,
.page-blog-huong-dan-dang-ky-pp88__faq-section,
.page-blog-huong-dan-dang-ky-pp88__conclusion-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-blog-huong-dan-dang-ky-pp88__section-spacing {
    margin-top: 40px;
}

.page-blog-huong-dan-dang-ky-pp88__section-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-blog-huong-dan-dang-ky-pp88__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-blog-huong-dan-dang-ky-pp88__section-description {
    font-size: 1.1em;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-huong-dan-dang-ky-pp88__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.page-blog-huong-dan-dang-ky-pp88__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-huong-dan-dang-ky-pp88__feature-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-blog-huong-dan-dang-ky-pp88__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-huong-dan-dang-ky-pp88__feature-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-blog-huong-dan-dang-ky-pp88__feature-text {
    font-size: 1em;
    color: #666666;
}

/* Guide Section */
.page-blog-huong-dan-dang-ky-pp88__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-blog-huong-dan-dang-ky-pp88__step-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.page-blog-huong-dan-dang-ky-pp88__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3em;
    font-weight: 800;
    color: rgba(38, 169, 224, 0.1); /* Light transparent brand color */
    z-index: 0;
}

.page-blog-huong-dan-dang-ky-pp88__step-item h3 {
    position: relative;
    z-index: 1;
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
    padding-left: 50px; /* Space for the number */
}

.page-blog-huong-dan-dang-ky-pp88__step-text {
    position: relative;
    z-index: 1;
    color: #555555;
    margin-bottom: 20px;
}

.page-blog-huong-dan-dang-ky-pp88__step-list {
    position: relative;
    z-index: 1;
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #555555;
}

.page-blog-huong-dan-dang-ky-pp88__step-list li {
    margin-bottom: 8px;
}

.page-blog-huong-dan-dang-ky-pp88__step-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Bullet List */
.page-blog-huong-dan-dang-ky-pp88__bullet-list {
    list-style: disc outside;
    padding-left: 25px;
    margin-top: 20px;
    color: #555555;
}

.page-blog-huong-dan-dang-ky-pp88__bullet-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-blog-huong-dan-dang-ky-pp88__bullet-list strong {
    color: #26A9E0;
}

/* Promotion Section */
.page-blog-huong-dan-dang-ky-pp88__promo-section {
    background-color: #26A9E0; /* Primary brand color background */
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-blog-huong-dan-dang-ky-pp88__promo-section .page-blog-huong-dan-dang-ky-pp88__section-title,
.page-blog-huong-dan-dang-ky-pp88__promo-section .page-blog-huong-dan-dang-ky-pp88__section-description {
    color: #ffffff;
}

.page-blog-huong-dan-dang-ky-pp88__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-huong-dan-dang-ky-pp88__promo-card {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white on primary background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-huong-dan-dang-ky-pp88__promo-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-blog-huong-dan-dang-ky-pp88__promo-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-blog-huong-dan-dang-ky-pp88__promo-card .page-blog-huong-dan-dang-ky-pp88__btn-primary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #ffffff;
    width: fit-content;
    margin: 0 auto;
}

.page-blog-huong-dan-dang-ky-pp88__promo-card .page-blog-huong-dan-dang-ky-pp88__btn-primary:hover {
    background-color: #f0f8ff;
    color: #1e87b7;
}

/* FAQ Section */
.page-blog-huong-dan-dang-ky-pp88__faq-list {
    margin-top: 40px;
}

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

.page-blog-huong-dan-dang-ky-pp88__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    list-style: none; /* Hide default marker */
    position: relative;
    z-index: 1;
}

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

.page-blog-huong-dan-dang-ky-pp88__faq-qtext {
    flex-grow: 1;
}

.page-blog-huong-dan-dang-ky-pp88__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-huong-dan-dang-ky-pp88__faq-item[open] .page-blog-huong-dan-dang-ky-pp88__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

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

/* Conclusion Section */
.page-blog-huong-dan-dang-ky-pp88__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-huong-dan-dang-ky-pp88__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-huong-dan-dang-ky-pp88__hero-container {
        padding: 30px 15px;
    }

    .page-blog-huong-dan-dang-ky-pp88__content-area,
    .page-blog-huong-dan-dang-ky-pp88__guide-section,
    .page-blog-huong-dan-dang-ky-pp88__promo-section,
    .page-blog-huong-dan-dang-ky-pp88__faq-section,
    .page-blog-huong-dan-dang-ky-pp88__conclusion-section {
        padding: 50px 15px;
    }

    .page-blog-huong-dan-dang-ky-pp88__section-title {
        font-size: 2em;
    }
    .page-blog-huong-dan-dang-ky-pp88__feature-title {
        font-size: 1.3em;
    }
    .page-blog-huong-dan-dang-ky-pp88__promo-title {
        font-size: 1.4em;
    }
    .page-blog-huong-dan-dang-ky-pp88__faq-item summary {
        font-size: 1.1em;
        padding: 18px 20px;
    }
}


@media (max-width: 768px) {
    /* Hero Section */
    .page-blog-huong-dan-dang-ky-pp88__hero-section {
        padding-top: 10px !important; /* Small top padding, relying on body padding-top from shared.css */
        padding-bottom: 40px;
    }
    .page-blog-huong-dan-dang-ky-pp88__hero-container {
        flex-direction: column;
        padding: 30px 15px;
        gap: 20px;
    }
    .page-blog-huong-dan-dang-ky-pp88__hero-content,
    .page-blog-huong-dan-dang-ky-pp88__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-blog-huong-dan-dang-ky-pp88__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em); /* Adjust H1 for mobile */
        text-align: center;
    }
}