/* Hero Section */
.hero-section {
    background-color: #eef2fb;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
}

.hero-image {
    width: 50%;
    height: 100%;
    z-index: 0;
}

.hero-image::before {
    content: '';
    position: absolute;
    left: -61px;
    width: 900px;
    height: 900px;
    background: url('../images/Orange Curve Shape copy.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
}

.hero-image img {
    width: 105%;
    height: 90%;
    z-index: 1;
    padding-top: 100px;
    mask-image: linear-gradient(to bottom, rgba(70, 70, 70, 70) 77%, transparent 94%);
    margin-left: -120px;
}

.hero-container {
}

.hero-text {
    width: 46%;
    padding: 11%;
    z-index: 1;

}

.hero-text h1 {
    color: #0F3664;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    color: #333;
    line-height: 2;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: #0F3664;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
}

/* Referral Bonus Section */
.referral-bonus-section {
    padding: 60px;
    margin-bottom: 160px;
}

.bonus-content {
    width: 100%;
    background-color: #eef2fb;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.dollar-icon {
    display: flex;
}

.dollar-icon .icon {
    font-size: 45px;
    font-weight: 100;
    color: #0F3664;
}

.bonus-content h2 {
    color: #0F3664;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bonus-criteria {
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.bonus-criteria li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.form-link {
    color: #0F3664;
    text-decoration: none;
    border-bottom: 1px solid #0F3664;
}

.refer-btn {
    display: inline-block;
    background-color: #F9A826;
    color: #0F3664;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.refer-btn:hover {
    background-color: #e89615;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 0;
    background: #fbc36d;
}

.cta-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: auto auto 100px;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 330%;
    margin-top: -150px;
    background: url(/assets/images/referral-bonus-round.svg) no-repeat top center;
    background-size: contain;
    z-index: -1;
}

.cta-card {
    background-color: #0F3664;
    color: white;
    border-radius: 10px;
    padding: 30px;
    width: 400px;
}

.cta-button{
    width: 100%;
    padding: 15px;
    text-align: center;
}

.cta-card h3 {
    margin-bottom: 30px;
    font-size: 1.25rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fas.fa-arrow-down {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 2px solid #5e7189; /* Circle border color */
    border-radius: 50%; /* Makes it a circle */
    color: #5e7189; /* Icon color */
    font-size: 20px; /* Icon size */
    background-color: #eef2fb; /* Circle background color */
}

/* Responsive styles */
@media (max-width: 1250px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        border-radius: 0 0 300px 300px;
        height: 100%;
    }

    .hero-text {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        z-index: 1;
        padding: 0;
    }

    .cta-grid {
        flex-direction: column;
        align-items: center;
    }

    .cta-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 700px) {
    .hero-image img {
        padding-top: 20px;
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .cta-section::before {
        margin-top: -100px;
    }
}