.affiliate-hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    margin-bottom: 0;
    text-align: center;
    padding: 0 20px;
}

h1{
    font-size: 60px;
    color: #d7d7d7;
    margin-bottom: 15px;
    text-align: center;
}

h2{
    font-size: 36px;
    color: #d7d7d7;
    margin-bottom: 50px;
}

.btn-primary {
    gap: 10px;
    border: 3px solid #070b97;
    background-color: #030764;
    border-radius: 20px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 0 15px #030764;
    padding: 12px 18px;
    opacity: 0.80;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    border-color: #d7d7d7;
    box-shadow: 0 0 10px #d7d7d7;
}

/* How it works section */
.affiliate-info {
    text-align: center;
    padding: 60px 20px;
}


.info-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

/* Arrow/Chevron step styling */
.step-1,
.step-2,
.step-3 {
    position: relative;
    padding: 30px 50px 30px 60px;
    min-width: 250px;
    max-width: 25%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
    margin-left: -15px;
    transition: all 0.3s ease;
    border: 2px solid #070b97;
}

.step-1 {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    margin-left: 0;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(90deg, #01054b, #03085b);
}

.step-2 {
    background: linear-gradient(90deg, #03085b, #080a74);
}

.step-3 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, #080a74, #070b97);
}

.step-1:hover,
.step-2:hover,
.step-3:hover {
    transform: translateY(-5px);
}

.step-1 h3,
.step-2 h3,
.step-3 h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.step-1 p,
.step-2 p,
.step-3 p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .info-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-1,
    .step-2,
    .step-3 {
        clip-path: none;
        margin-left: 0;
        border-radius: 10px;
        padding: 30px;
        min-width: 280px;
    }
}