
    .rinson-affiliate-container {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333333;
        line-height: 1.6;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .aff-hero {
        text-align: center;
        padding: 50px 20px;
        background: linear-gradient(135deg, #1E69D2 0%, #0F4DA8 100%);
        color: #ffffff;
        border-radius: 8px;
        margin-bottom: 50px;
        box-shadow: 0 4px 15px rgba(30, 105, 210, 0.15);
    }
    .aff-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
        color: #ffffff;
    }
    .aff-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        font-size: 2rem;
        color: #1E69D2;
        margin-bottom: 40px;
        position: relative;
        font-weight: 600;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #B40404;
        margin: 10px auto 0;
    }
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    .step-card {
        background: #ffffff;
        border: 1px solid #eef2f5;
        border-top: 4px solid #1E69D2;
        padding: 30px;
        border-radius: 6px;
        text-align: center;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    .step-card:hover {
        transform: translateY(-5px);
    }
    .step-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .step-card h3 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 12px;
    }
    .benefits-section {
        background-color: #f9fbfd;
        padding: 50px 30px;
        border-radius: 8px;
        margin-bottom: 60px;
    }
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .benefit-item .check-icon {
        color: #B40404;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1;
    }
    .benefit-item h4 {
        margin: 0 0 5px 0;
        font-size: 1.1rem;
        color: #1E69D2;
    }
    .audience-section {
        margin-bottom: 60px;
    }
    .audience-tag-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .audience-tag {
        background-color: #e8f1fc;
        color: #1E69D2;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 500;
        font-size: 1rem;
    }
    .cta-section {
        text-align: center;
        padding: 40px 20px;
        background-color: #ffffff;
        border: 2px dashed #1E69D2;
        border-radius: 8px;
    }
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .cta-btn {
        display: inline-block;
        background-color: #B40404; 
        color: #ffffff !important;
        text-decoration: none !important;
        padding: 15px 40px;
        font-size: 1.2rem;
        font-weight: bold;
        border-radius: 4px;
        transition: background 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(180, 4, 4, 0.3);
    }
    .cta-btn:hover {
        background-color: #900303;
        transform: scale(1.03);
    }
    @media (max-width: 768px) {
        .aff-hero h1 { font-size: 1.8rem; }
        .aff-hero p { font-size: 1rem; }
        .section-title { font-size: 1.6rem; }
    }
