/* style/mv66-vip-affiliate-program.css */

/* Base styles for the page content */
.page-mv66-vip-affiliate-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default white */
}

.page-mv66-vip-affiliate-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section styling */
.page-mv66-vip-affiliate-program__section {
    padding: 80px 0;
    text-align: center;
}

.page-mv66-vip-affiliate-program__dark-bg {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-mv66-vip-affiliate-program__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-mv66-vip-affiliate-program__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: inherit; /* Inherit from section background */
}

.page-mv66-vip-affiliate-program__section-intro {
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

/* Hero Section */
.page-mv66-vip-affiliate-program__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-mv66-vip-affiliate-program__hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-mv66-vip-affiliate-program__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-mv66-vip-affiliate-program__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-mv66-vip-affiliate-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}