body {
    /* font-family: 'Roboto', sans-serif; */
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}




.cta-button {
    background-color: #ff7300;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #f06;
    transform: translateY(-5px);
}

/* Section Header */
.section-header h2 {

    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.section-header p {
    color: #555;

    text-align: center;
    margin-bottom: 60px;
}

/* How It Works Section */
.how-it-works {
    background: #f4f7fa;
    padding: 10px 0;
    text-align: center;
}

.how-it-works .card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.how-it-works .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.how-it-works i {

    color: #ff7300;
    margin-bottom: 20px;
}

.how-it-works h3 {

    color: #333;
    margin-bottom: 15px;
}

/* Earning Methods Section */
.earning-methods .card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.earning-methods .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.earning-methods .card h5 {

    color: #ff7300;
    font-weight: 600;
    margin-bottom: 20px;
}

.earning-methods .card p {
    color: #777;

}

/* CTA Section */
.cta-section {
    background-color:rgb(229, 243, 247);
    color: teal;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {


    margin-bottom: 30px;
}

.cta-section p {
    margin-bottom: 30px;

}

.join-now-btn:hover {
    background-color: #f06;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
 

    .cta-button {
        padding: 12px 30px;
    }

    .how-it-works .card {
        margin-bottom: 15px;
    }

    .earning-methods .card {
        margin-bottom: 15px;
    }

}