/* style/affiliate-program.css */
.page-affiliate-program {
    font-family: 'Arial', sans-serif;
    color: #0A192F;
    line-height: 1.6;
}

.page-affiliate-program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-affiliate-program-section {
    padding: 60px 0;
    text-align: center;
}

.page-affiliate-program-hero {
    background: linear-gradient(135deg, #0A192F, #333333);
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-affiliate-program-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-affiliate-program-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-affiliate-program-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B400; /* Gold on dark background, contrast 4.58:1 */
    font-weight: bold;
}

.page-affiliate-program-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF; /* White on dark background, contrast 15.68:1 */
}

.page-affiliate-program-section-title {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #0A192F; /* Dark blue on light background, contrast 15.68:1 */
    font-weight: bold;
}

.page-affiliate-program-sub-section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #0A192F; /* Dark blue on light background, contrast 15.68:1 */
    text-align: left;
}

.page-affiliate-program-text-gold {
    color: #E0B400 !important; /* Gold on dark background, contrast 4.58:1 */
}

.page-affiliate-program-text-white {
    color: #FFFFFF !important; /* White on dark background, contrast 15.68:1 */
}

.page-affiliate-program-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.page-affiliate-program-btn-primary {
    background-color: #E0B400; /* Gold */
    color: #0A192F; /* Dark blue on gold, contrast 4.58:1 */
}

.page-affiliate-program-btn-primary:hover {
    background-color: #f0c530;
    transform: translateY(-2px);
}

.page-affiliate-program-btn-secondary {
    background-color: transparent;
    border: 2px solid #E0B400; /* Gold border */
    color: #E0B400; /* Gold text on dark background, contrast 4.58:1 (if section is dark) or on light background (if section is light, then contrast will be low, so ensure this is only used on dark sections or as a border for light text on light background) -- in this case, used on dark hero and dark final cta */
}

.page-affiliate-program-btn-secondary:hover {
    background-color: #E0B400;
    color: #0A192F; /* Dark blue on gold, contrast 4.58:1 */
    transform: translateY(-2px);
}

.page-affiliate-program-btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 5px;
    background-color: #0A192F;
    color: #E0B400; /* Gold on dark blue, contrast 4.58:1 */
}

.page-affiliate-program-btn-small:hover {
    background-color: #E0B400;
    color: #0A192F; /* Dark blue on gold, contrast 4.58:1 */
}

.page-affiliate-program-cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-affiliate-program-why-join {
    background-color: #F8F8F8;
}

.page-affiliate-program-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-affiliate-program-benefit-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #E0B400;
}

.page-affiliate-program-benefit-title {
    font-size: 1.4em;
    color: #0A192F; /* Dark blue on white, contrast 15.68:1 */
    margin-bottom: 15px;
}

.page-affiliate-program-benefit-item p {
    color: #333333; /* Dark gray on white, contrast 11.85:1 */
}

.page-affiliate-program-how-it-works {
    background-color: #0A192F;
    color: #FFFFFF;
}

.page-affiliate-program-how-it-works .page-affiliate-program-section-title {
    color: #E0B400; /* Gold on dark blue, contrast 4.58:1 */
}

.page-affiliate-program-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}