:root {
        --primary-green: #1b8a4c;
        --primary-green-hover: #146c3a;
        --bg-light: #f8fbfa;
        --text-dark: #222;
        --text-muted: #555;
        --card-bg: #ffffff;
        --accent-gold: #d4a373;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Cairo', sans-serif;
        background-color: #e9ecef;
        color: var(--text-dark);
        line-height: 1.6;
    }

    .container {
        max-width: 800px;
        margin: 0 auto;
        background-color: var(--bg-light);
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        overflow: hidden;
        position: relative;
    }

    /* Hero Section */
    .hero {
        position: relative;
        background-image: url('../static/bb.png');
        background-size: cover;
        background-position: center;
        padding: 20px 20px 40px;
        text-align: center;
        color: #fff;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.9) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: #000;
    }

    .top-bar {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .top-bar div {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .hero h1 {
        font-size: 38px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 10px;
        color: #111;
    }

    .hero h2 {
        display: inline-block;
        background-color: var(--primary-green);
        color: #fff;
        font-size: 32px;
        font-weight: 900;
        padding: 5px 20px;
        border-radius: 8px;
        transform: rotate(-2deg);
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
    }

    .features-badges {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .badge {
        background: #fff;
        border-radius: 20px;
        padding: 5px 15px;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: var(--primary-green);
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        padding: 12px 30px;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(27, 138, 76, 0.3);
        transition: background 0.3s, transform 0.2s;
    }

    .cta-btn:hover {
        background-color: var(--primary-green-hover);
        transform: translateY(-2px);
    }

    /* Generic Section Styles */
    section {
        padding: 40px 20px;
        text-align: center;
    }

    .section-title {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 50%;
        height: 3px;
        background-color: var(--accent-gold);
        margin: 5px auto 0;
        border-radius: 2px;
    }

    /* Why Section */
    .why-section {
        background-color: #fff;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .why-card {
        background-color: var(--bg-light);
        border-radius: 15px;
        padding: 20px 10px;
        text-align: center;
        transition: transform 0.3s;
    }

    .why-card:hover {
        transform: translateY(-5px);
    }

    .why-card .icon {
        font-size: 30px;
        margin-bottom: 10px;
        color: #333;
    }

    .why-card h3 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .why-card p {
        font-size: 12px;
        color: var(--text-muted);
    }

    /* Jobs Section */
    .jobs-section {
        background-color: #fdfbf7;
    }

    .jobs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .job-card {
        background-color: #fff;
        border-radius: 15px;
        padding: 20px 10px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        transition: box-shadow 0.3s;
    }

    .job-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .job-card .icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .job-card h4 {
        font-size: 12px;
        font-weight: 700;
    }

    /* Requirements Section */
    .requirements-section {
        background-color: #fff;
    }

    .req-container {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
        text-align: right;
    }

    .req-content {
        flex: 1;
    }

    .req-image {
        flex: 0 0 40%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .req-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .req-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .req-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .req-icon {
        width: 50px;
        height: 50px;
        background-color: #e8f5e9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--primary-green);
    }

    .req-item span {
        font-size: 14px;
        font-weight: 700;
    }

    /* How It Works Section */
    .how-section {
        background-color: #f0f8f2;
    }

    .steps-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 30px;
        position: relative;
    }

    .steps-container::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 15%;
        right: 15%;
        height: 2px;
        background-color: #c8e6c9;
        z-index: 1;
    }

    .step-item {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 30%;
        text-align: center;
    }

    .step-number {
        width: 30px;
        height: 30px;
        background-color: var(--accent-gold);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    }

    .step-item h4 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .step-item p {
        font-size: 12px;
        color: var(--text-muted);
    }

    /* FAQ Section */
    .faq-section {
        background-color: #fff;
    }

    .faq-container {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
        text-align: right;
    }

    .faq-image {
        flex: 0 0 35%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .faq-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .faq-content {
        flex: 1;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .faq-item {
        background-color: var(--bg-light);
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #eee;
    }

    .faq-question {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        background-color: #fff;
    }

    .faq-answer {
        padding: 0 20px 15px;
        font-size: 13px;
        color: var(--text-muted);
        display: none;
        background-color: var(--bg-light);
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    /* Bottom CTA Section */
    .bottom-cta {
        background-image: url('../static/cc.png');
        background-size: cover;
        background-position: center;
        position: relative;
        padding: 50px 20px;
        text-align: center;
        color: #fff;
    }

    .bottom-cta::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.7);
        z-index: 1;
    }

    .bottom-cta-content {
        position: relative;
        z-index: 2;
    }

    .bottom-cta h2 {
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .bottom-cta p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .bottom-cta .cta-btn {
        background-color: #fff;
        color: var(--primary-green);
    }

    .bottom-cta .cta-btn:hover {
        background-color: #f0f0f0;
    }

    .bottom-footer {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        font-size: 13px;
        font-weight: 600;
        flex-wrap: wrap;
    }

    .bottom-footer span {
        display: flex;
        align-items: center;
        gap: 5px;
        background: rgba(255,255,255,0.15);
        padding: 8px 15px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    /* Floating Button */
    .floating-btn {
        position: fixed;
        bottom: 30px;
        left: 30px;
        background-color: var(--primary-green);
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 15px rgba(27, 138, 76, 0.4);
        z-index: 1000;
        text-decoration: none;
        transition: transform 0.3s, background 0.3s;
    }

    .floating-btn:hover {
        transform: scale(1.1);
        background-color: var(--primary-green-hover);
    }

    /* Media Queries */
    @media (max-width: 768px) {
        .req-container, .faq-container {
            flex-direction: column;
            text-align: center;
        }
        
        .req-image, .faq-image {
            flex: 0 0 100%;
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
        }

        .req-container {
            flex-direction: column;
        }

        .faq-container {
            flex-direction: column;
        }

        .req-grid {
            justify-items: center;
        }

        .req-item {
            align-items: center;
            text-align: center;
        }

        .faq-list {
            text-align: right;
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .hero h1 { font-size: 28px; }
        .hero h2 { font-size: 24px; }
        .why-grid { grid-template-columns: repeat(2, 1fr); }
        .jobs-grid { grid-template-columns: repeat(3, 1fr); }
        .steps-container { flex-direction: column; align-items: center; }
        .steps-container::before { display: none; }
        .step-item { width: 100%; margin-bottom: 25px; flex-direction: row; text-align: right; gap: 15px; }
        .step-number { position: absolute; top: -10px; right: -10px; margin: 0; }
        .step-icon { margin-bottom: 0; }
        .floating-btn { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 24px; }
    }