/* style/blog-huong-dan-dang-ky-79kinh.css */

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

.page-blog-huong-dan-dang-ky-79kinh {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Default text color for light body background */
    line-height: 1.6;
    background-color: var(--background-color); /* Page specific background */
}

/* HERO Section */
.page-blog-huong-dan-dang-ky-79kinh__hero-section {
    padding-top: 10px; /* Assuming body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--background-color); /* Light background for the hero section */
}

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

.page-blog-huong-dan-dang-ky-79kinh__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: var(--text-main-color); /* Ensure text is dark on light background */
}

.page-blog-huong-dan-dang-ky-79kinh__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Max font size controlled */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color); /* Brand color for H1 */
}

.page-blog-huong-dan-dang-ky-79kinh__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-huong-dan-dang-ky-79kinh__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-blog-huong-dan-dang-ky-79kinh__btn-primary,
.page-blog-huong-dan-dang-ky-79kinh__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For button responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-blog-huong-dan-dang-ky-79kinh__btn-primary {
    background: var(--gradient-button);
    color: #ffffff; /* White text for contrast on dark gradient */
    border: 2px solid transparent;
}

.page-blog-huong-dan-dang-ky-79kinh__btn-primary:hover {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-blog-huong-dan-dang-ky-79kinh__btn-secondary {
    background: var(--card-bg-color); /* White background */
    color: var(--primary-color); /* Brand color text */
    border: 2px solid var(--primary-color);
}

.page-blog-huong-dan-dang-ky-79kinh__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}