  /* Affiliate Page Styles */
        .affiliate-hero {
            background: linear-gradient(135deg, #010042 0%, #004AAD 100%);
            background-image: url(../images/af.jpg);
            padding: 80px 0;
            text-align: center;
            color: #fff;
        }

        .affiliate-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .affiliate-hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #ffffff;
            font-weight: bold;
        }

        .btn-register-affiliate {
            display: inline-block;
            background: #39b6ff;
            color: #010042;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-register-affiliate:hover {
            background: #fff;
            transform: translateY(-3px);
        }

        .affiliate-section {
            padding: 60px 0;
        }

        .affiliate-section.bg-light {
            background: #f5f5f5;
        }

        .affiliate-section h2 {
            font-size: 2rem;
            color: #39b6ff;
            text-align: center;
            margin-bottom: 40px;
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .video-container iframe {
            width: 100%;
            height: 450px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .affiliate-description {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: #333;
            line-height: 1.8;
        }

        .affiliate-description p {
            margin-bottom: 15px;
        }

        .affiliate-description strong {
            color: #004AAD;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step-card {
            background: #fff;
            padding: 40px 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-10px);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #004AAD 0%, #39b6ff 100%);
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .step-card h3 {
            font-size: 1.2rem;
            color: #010042;
            margin-bottom: 15px;
        }

        .step-card p {
            color: #666;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background: linear-gradient(135deg, #004AAD 0%, #39b6ff 100%);
            color: #fff;
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
        }

        .benefit-card i {
            font-size: 3rem;
            color: #00f0fd;
            margin-bottom: 15px;
        }

        .benefit-card h4 {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Register Form Section */
        .register-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #4AD0FD87 0%, #FFFFFF87 100%);
        }

        .register-section h2 {
            color: #39b6ff;
            margin-bottom: 20px;
        }

        .register-section p.subtitle {
            color: #fd5f00;
            text-align: center;
            margin-bottom: 40px;
        }

        .register-form {
            max-width: 500px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #004AAD;
        }

        .btn-submit-affiliate {
            width: 100%;
            background: linear-gradient(135deg, #004AAD 0%, #39b6ff 100%);
            color: #fff;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-submit-affiliate:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,74,173,0.3);
        }

        @media (max-width: 991px) {
            .affiliate-hero h1 {
                font-size: 1.8rem;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-container iframe {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .register-form {
                padding: 25px;
                margin: 0 15px;
            }
        }