body {
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
    /* font-family: 'Arial', sans-serif; */
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1abc9c, #16a085);
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero h1 {

    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {

    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffffff;
    color: #1abc9c;
    padding: 14px 28px;
   
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #16a085;
    color: #ffffff;
}

/* Section Header */
h2 {
 
    font-weight: 600;
    color: #34495e;
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
  
    color: #7f8c8d;
}

/* How It Works Cards */
.how-it-works-cards .card {
    border: none;
    border-radius: 12px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.how-it-works-cards .card h3 {
   
    color: #1abc9c;
    margin-bottom: 15px;
}

.how-it-works-cards .card p {

    color: #7f8c8d;
    line-height: 1.6;
}

/* Earning Section */
.earning-method h5 {

    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
}

.earning-method .h6 {

    color: #7f8c8d;
}

.earning-method {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.earning-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    background-color: #1abc9c;
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
    border-radius: 12px;
}

.cta-section h2 {

    margin-bottom: 20px;
}

.cta-section p {
  
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

   

    .how-it-works-cards .col-md-4 {
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

 
}