/* style/affiliate-program-commission-structure.css */
.page-affiliate-program-commission-structure {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #FFFFFF;
}

.page-affiliate-program-commission-structure__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-affiliate-program-commission-structure__hero-section {
    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, #E0F2F7, #FFFFFF); /* Lighter gradient for hero */
    overflow: hidden; /* Ensure no overflow */
}

.page-affiliate-program-commission-structure__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-affiliate-program-commission-structure__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 800px; /* Constrain hero image width */
}

.page-affiliate-program-commission-structure__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-affiliate-program-commission-structure__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-affiliate-program-commission-structure__hero-title {
    font-size: 3.2em;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-affiliate-program-commission-structure__hero-description {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-affiliate-program-commission-structure__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #26A9E0; /* Primary color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(38, 169, 224, 0.4);
}

.page-affiliate-program-commission-structure__cta-button:hover {
    background: #1e87b7; /* Darker primary for hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(38, 169, 224, 0.6);
}

/* General Section Styles */
.page-affiliate-program-commission-structure__section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-affiliate-program-commission-structure__introduction {
    background-color: #f8fcfd; /* Very light background */
}

.page-affiliate-program-commission-structure__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-affiliate-program-commission-structure__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-affiliate-program-commission-structure__sub-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}