      /* Basic Styling */
      body {
        /* font-family: Arial, sans-serif; */
        /* line-height: 1.6; */
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
    }
    
    /* Container to wrap the sections */
    .container {
        margin: 0 auto;
    }
    
    /* Hero Section */
    .hero-section {
        background-color:rgb(113 158 224);
        color: white;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-section h1 {
        /* font-size: 2.5rem; */
        margin-bottom: 10px;
    }
    .id-text-justify{
        text-align: justify;
    }
    
    
    
    /* Overview Section */
    .overview-section {
        background-color: white;
        padding: 40px 0;
        margin-bottom: 20px;
    }
    
    .overview-section h2 {
        /* font-size: 2rem; */
        text-align: center;
        margin-bottom: 20px;
    }
    
    .overview-section p {
        /* font-size: 1rem; */
        text-align: justify;
    }
    
    /* Earnings Section */
    .earnings-section {
        background-color: #ecf0f1;
        padding: 40px 0;
    }
    
    .earnings-section h2 {
        /* font-size: 2rem; */
        text-align: center;
        margin-bottom: 20px;
    }
    
    .earning-method {
        background-color: white;
        margin: 20px 0;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .earning-method h3 {
        /* font-size: 1.5rem; */
        color: #2c3e50;
    }
    
    .earning-method p {
        /* font-size: 1rem; */
        color: #34495e;
    }
    
    /* CTA Section */
    .cta-section {
        background-color: #b27fe2;
        color: white;
        text-align: center;
        padding: 40px 0;
    }
    
    
    .cta-button {
        background-color: #4f5bef;
        color: white;
        text-decoration: none;
        padding: 10px 20px;
        font-size: 1.2rem;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color:rgb(245, 250, 247);
        color:teal;
    
    }
    