:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --button-register-login: #C30808;
    --button-register-login-font: #FFFF00;
    --background-color: #FFFFFF;
}

body {
    background-color: var(--background-color); /* Matches the specified background color #FFFFFF */
    color: var(--text-dark); /* Default text color for light background */
}

.page-resources-abcvip-app-registration-tutorial {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-resources-abcvip-app-registration-tutorial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-abcvip-app-registration-tutorial__container--center {
    text-align: center;
}

.page-resources-abcvip-app-registration-tutorial__section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.page-resources-abcvip-app-registration-tutorial__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-resources-abcvip-app-registration-tutorial__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-abcvip-app-registration-tutorial__paragraph {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Hero Banner */
.page-resources-abcvip-app-registration-tutorial__hero-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, var(--primary-color) 0%, #00994d 100%); /* Green gradient */
    color: var(--text-light);
    overflow: hidden;
    min-height: 450px;
}

.page-resources-abcvip-app-registration-tutorial__hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-resources-abcvip-app-registration-tutorial__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-abcvip-app-registration-tutorial__hero-description {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-abcvip-app-registration-tutorial__hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-abcvip-app-registration-tutorial__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    overflow: hidden;
}

.page-resources-abcvip-app-registration-tutorial__hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken background image for text readability, not changing color */
}

/* CTA Buttons */
.page-resources-abcvip-app-registration-tutorial__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-abcvip-app-registration-tutorial__cta-button--primary {
    background-color: var(--button-register-login); /* #C30808 */
    color: var(--button-register-login-font); /* #FFFF00 */
    border: 2px solid var(--button-register-login);
}

.page-resources-abcvip-app-registration-tutorial__cta-button--primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-abcvip-app-registration-tutorial__cta-button--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-abcvip-app-registration-tutorial__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Benefit List */
.page-resources-abcvip-app-registration-tutorial__benefit-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-abcvip-app-registration-tutorial__benefit-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-abcvip-app-registration-tutorial__benefit-item:hover {
    transform: translateY(-5px);
}

.page-resources-abcvip-app-registration-tutorial__benefit-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Step-by-Step Guide */
.page-resources-abcvip-app-registration-tutorial__step-item {
    background-color: var(--secondary-color);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-abcvip-app-registration-tutorial__step-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-abcvip-app-registration-tutorial__step-item img {
    width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}