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

.hero-content {
    display: flex;
}

.hero-image {
    width: 50%;
    position: relative;
    height: 600px; /* Increase height to show the full image */
    border-radius: 0 500px 500px 0;
    background-color: #F9A826;
}

.hero-image img {
    width: 70%;
    height: auto; /* Maintain aspect ratio */
    top: 50px; /* Move the image down */
    object-fit: cover;
    object-position: center;
}

.hero-container {
    padding-top: 50px; /* Add padding to expand the container */
}

.hero-text {
    width: 40%;
    padding: 40px;
    margin-left: 10%;
}

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

.hero-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.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 {
    background-color: #f9fafd;
    padding: 60px 0;
}

.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 {
    padding: 60px 0;
    background-color: #fabe66;
    position: relative;
    border-radius: 50% 50% 0 0 / 300px;
}

.cta-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.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: 992px) {
    .hero-content {
        flex-direction: column;
    }

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

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

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

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