.page-blog-latest-vuaclub-code-benefits {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for the page content */
    background-color: var(--background-color, #08160F); /* Page specific background if not handled by shared body */
}

.page-blog-latest-vuaclub-code-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-latest-vuaclub-code-benefits__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Space for content below image */
    background-color: var(--background-color, #08160F);
    padding-top: 10px; /* Small top padding for the first section */
}

.page-blog-latest-vuaclub-code-benefits__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-latest-vuaclub-code-benefits__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-latest-vuaclub-code-benefits__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-latest-vuaclub-code-benefits__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-latest-vuaclub-code-benefits__intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-latest-vuaclub-code-benefits__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-blog-latest-vuaclub-code-benefits__btn-primary,
.page-blog-latest-vuaclub-code-benefits__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* Ensure responsive on mobile */
}