<style>

    .landing-page {

        font-family: 'Cairo', sans-serif;

        direction: rtl;

        color: #333;

    }

    .hero-section {

        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1200');

        background-size: cover;

        color: white;

        padding: 80px 20px;

        text-align: center;

        border-radius: 10px;

    }

    .hero-title { font-size: 2.5rem; margin-bottom: 15px; color: #ffcc00; }

    .features-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

        gap: 20px;

        margin-top: 40px;

    }

    .feature-card {

        background: #f9f9f9;

        padding: 20px;

        border-right: 5px solid #007bff;

        border-radius: 5px;

        box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    }

    .cta-button {

        display: inline-block;

        background: #28a745;

        color: white;

        padding: 15px 40px;

        text-decoration: none;

        font-weight: bold;

        border-radius: 50px;

        margin-top: 25px;

        font-size: 1.2rem;

    }

</style>


<div class="landing-page">

    <div class="hero-section">

        <h1 class="hero-title">دبلوم الأمن والسلامة المهنية الشامل</h1>

        <p>كن خبيراً في حماية بيئة العمل واحصل على شهادة تؤهلك للعمل في كبرى الشركات.</p>

        <a href="#buy-now" class="cta-button">سجل الآن - خصم 50% لفترة محدودة</a>

    </div>


    <div class="features-grid">

        <div class="feature-card">

            <h3>✅ محتوى معتمد</h3>

            <p>دروس تطبيقية مبنية على معايير الأوشا (OSHA) العالمية.</p>

        </div>

        <div class="feature-card">

            <h3>📜 شهادة إتمام</h3>

            <p>تحصل على شهادة رقمية قابلة للتحقق لتعزيز سيرتك الذاتية.</p>

        </div>

        <div class="feature-card">

            <h3>🛠️ تطبيق عملي</h3>

            <p>نماذج جاهزة لخطط الطوارئ وتقييم المخاطر يمكنك استخدامها فوراً.</p>

        </div>

    </div>


    <div style="margin-top: 50px; padding: 20px;">

        <h2 style="text-align: center;">ماذا ستتعلم في هذه الدورة؟</h2>

        <ul style="list-style: none; padding: 0;">

            <li style="padding: 10px 0; border-bottom: 1px solid #eee;">🔹 كيفية تحديد المخاطر الفيزيائية والكيميائية في العمل.</li>

            <li style="padding: 10px 0; border-bottom: 1px solid #eee;">🔹 استراتيجيات إخلاء المنشآت والتعامل مع الحرائق.</li>

            <li style="padding: 10px 0; border-bottom: 1px solid #eee;">🔹 أنظمة السلامة في المستودعات والمصانع.</li>

        </ul>

    </div>

</div>