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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg,  0%,  100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            background: 
                        url('courseshero.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 80px;
            margin-bottom: 40px;
 position: relative;                    
     padding: 150px 80px 40px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
                        margin-bottom: 60px;
        }

        .main-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .intro-text {
            text-align: center;
            font-size: 1.2rem;
            color: #1e3a8a;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
            border-radius: 15px;
            font-weight: 500;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .course-card {
            background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
            border-radius: 20px;
            padding: 30px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #7c2d12, #7c2d12);
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
            border-color: #7c2d12;
        }

        .course-title {
            color: #7c2d12;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }

        .course-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .course-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #555;
            line-height: 1.6;
            padding-right:30px;
        }

        .course-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #7c2d12;
            font-weight: bold;
            font-size: 1.2rem;
        }
   .course-features.ar li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: #7c2d12;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .course-level {
            display: inline-block;
            background: linear-gradient(135deg, #7c2d12, #7c2d12);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .prerequisites {
            background: #fef3cd;
            border: 1px solid #f6cc02;
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
        }

        .prerequisites strong {
            color: #92400e;
        }

        .image-section {
            text-align: center;
            margin: 40px 0;
        }

        .course-image {
            max-width: 400px;
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e3a8a;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto;
        }

        .booking-section {
            background: linear-gradient(135deg, #7c2d12, #991b1b);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-top: 40px;
        }

        .booking-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .booking-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.95;
        }

        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            background: #25d366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            background: #128c7e;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            fill: currentColor;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .main-content {
                padding: 25px;
                margin: 15px 0;
            }
            
            .booking-section {
                padding: 25px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
