 :root {
            --primary-green: #009640;
            --dark-green: #007a33;
            --light-green: #e6f5ea;
            --orange: #f7941d;
            --dark-orange: #e07e1b;
            --gold: #ffd700;
            --text-dark: #1a1a1a;
            --text-gray: #555;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            padding: 5px;
        }

        .container {
            max-width: 700px;
            width: 100%;
            background: #ffffff;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, #fff7e6 0%, #fff 100%);
           
            text-align: center;
            position: relative;
            border-bottom: 0px solid var(--gold);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #005a30;
            text-shadow: 2px 2px 0 #ffd700;
            margin-bottom: 5px;
        }

        .hero-subtitle {
            background-color: var(--dark-green);
            color: white;
            display: inline-block;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 5px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .hero-icons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }

        .hero-icons img {
            height: 80px;
            object-fit: contain;
        }

        /* --- SECTION TITLE --- */
        .section-title {
            text-align: center;
            background: var(--orange);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 900;
            font-size: 1.8rem;
            display: inline-block;
            margin: 20px auto 20px auto;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 4px 0 #b35e00;
        }

        .section-title-green {
            background: #009640;
            box-shadow: 0 4px 0 #006b2c;
        }

        /* --- FEATURES GRID --- */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 20px;
        }

        .feature-item {
            background: #fff;
            border: 2px solid #eee;
            border-radius: 20px;
            padding: 15px 5px;
            text-align: center;
            position: relative;
        }

        .feature-item .icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px auto;
            font-size: 28px;
            color: white;
        }

        .icon-green { background: var(--primary-green); }
        .icon-orange { background: var(--orange); }
        .icon-dark-green { background: var(--dark-green); }

        .feature-item h4 {
            font-size: 1rem;
            font-weight: 900;
            color: #222;
            margin-bottom: 5px;
        }

        .feature-item p {
            font-size: 0.8rem;
            color: #555;
            line-height: 1.3;
        }

        .check-mark {
            position: absolute;
            top: -10px;
            left: -10px;
            background: white;
            border-radius: 50%;
            padding: 5px;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* --- WORK TIME --- */
        .work-time {
            background: #f0f7f0;
            padding: 15px;
            margin: 10px 15px;
            border-radius: 20px;
            border: 2px solid var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .work-time .clock-icon {
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .work-time .text-area {
            flex: 1;
            text-align: center;
        }

        .work-time .text-area h2 {
            font-size: 2rem;
            font-weight: 900;
            color: #222;
        }

        .work-time .text-area p {
            font-size: 1rem;
            color: #555;
        }

        /* --- EARNINGS --- */
        .earnings {
            background: #fff;
            padding: 10px 15px;
            margin: 10px 15px;
            border-radius: 20px;
            border: 1px solid #ddd;
        }

        .earnings-header {
            text-align: center;
            background: var(--orange);
            color: white;
            padding: 5px 20px;
            border-radius: 30px;
            display: inline-block;
            margin: 0 auto 15px auto;
            font-weight: 900;
            font-size: 1.5rem;
            position: relative;
           
        }

        .earnings-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .earning-card {
            border: 2px solid #ccc;
            border-radius: 15px;
            padding: 10px;
            text-align: center;
            background: #fff;
        }

        .earning-card .label {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .earning-card .amount {
            font-weight: 900;
            font-size: 2.2rem;
            color: #222;
        }

        .earning-card .currency {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .earning-card .icon-money {
            display: block;
            margin: 5px auto;
            font-size: 1.5rem;
            color: var(--dark-green);
        }

        .card-green .label { color: var(--primary-green); }
        .card-orange .label { color: var(--orange); }
        .card-dark .label { color: #333; }

        /* --- WHY US --- */
        .why-us {
            padding: 0 15px;
            margin: 20px 0;
        }

        .why-title {
            text-align: center;
            background: var(--orange);
            color: white;
            padding: 5px 20px;
            border-radius: 30px;
            display: inline-block;
            font-weight: 900;
            font-size: 1.8rem;
            position: relative;
           
            margin-bottom: 20px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
        }

        .why-item {
            text-align: center;
            background: #fafafa;
            padding: 10px;
            border-radius: 15px;
            border: 1px solid #eee;
        }

        .why-item .icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px auto;
            font-size: 28px;
            color: white;
        }

        .why-item h4 { font-weight: 900; font-size: 1.1rem; margin-bottom: 5px; }
        .why-item p { font-size: 0.85rem; color: #555; }

        /* --- STEPS --- */
        .steps {
            background: #fff;
            padding: 15px;
            margin: 10px 15px;
            border: 2px solid #ddd;
            border-radius: 20px;
            position: relative;
        }

        .steps-title {
            text-align: center;
            background: var(--primary-green);
            color: white;
            padding: 5px 20px;
            border-radius: 30px;
            display: inline-block;
            font-weight: 900;
            font-size: 1.8rem;
            position: relative;
           
            margin-bottom: 20px;
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 30%;
            text-align: center;
            position: relative;
        }

        .step-number {
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            margin-bottom: 10px;
            border: 3px solid var(--orange);
        }

        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 5px;
            color: #333;
        }

        .step-item p { font-size: 0.9rem; font-weight: 700; color: #222; }

        .arrow-connector {
            color: #bbb;
            font-size: 1.5rem;
            align-self: center;
            margin-top: -20px;
        }

        /* --- FOOTER --- */
        .footer-cta {
            background: #005a30;
            padding: 15px;
            margin: 20px 15px 15px 15px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            color: white;
            border: 2px solid var(--gold);
        }

        .footer-cta .whatsapp-icon {
            font-size: 3rem;
            color: #25D366;
        }

        .footer-cta .text {
            font-weight: 700;
            font-size: 1.2rem;
        }

        .footer-banner {
            background: var(--gold);
            color: #222;
            text-align: center;
            padding: 10px;
            font-weight: 900;
            font-size: 1.1rem;
            margin: 0 15px 20px 15px;
            border-radius: 30px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 600px) {
            .features-grid { grid-template-columns: 1fr 1fr; }
            .earnings-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .steps-container { flex-direction: column; align-items: center; }
            .step-item { width: 100%; margin-bottom: 20px; }
            .arrow-connector { transform: rotate(90deg); margin: 0; }
            .hero-title { font-size: 2.5rem; }
            .work-time { flex-direction: column; text-align: center; }
            .work-time .clock-icon { margin-bottom: 10px; }
        }