        /* Base Styles */
        :root {
            --primary: #2a5bd7;
            --secondary: #ff6b35;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .container p {
            text-align: center;
        }
        
        h1, h2, h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        p {
            margin-bottom: 10px;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
        }
        
        /* Buttons */
        .cta-button {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .cta-button:hover {
            background: #e05a2b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1546410531-bb4caa6b424d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Benefits Grid */
        .benefits-grid, .courses-grid, .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-item, .audience-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: #f8f9fa;
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover, .audience-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-item i, .audience-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Course Cards */
        .course-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            padding: 20px;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .course-card img {
            width: 80px;
            height: auto;
            margin-bottom: 15px;
        }
        
        .course-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
            transition: background 0.3s ease;
        }
        
        .course-btn:hover {
            background: #1e4bbb;
        }
        
        /* Process Steps */
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .step {
            text-align: center;
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        
        .step span {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 50px;
            margin-bottom: 15px;
        }
        
        /* Offer Section */
        .offer {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 50px 0;
        }
        
        .offer-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .offer i {
            margin-right: 10px;
        }
        
        .countdown-timer {
            font-size: 1.5rem;
            font-weight: bold;
            margin-top: 15px;
        }
        
        /* Contact Section */
        .contact {
            background: #f8f9fa;
            padding: 60px 0;
        }
        
        .contact-methods {
            display: flex;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .contact-info, .contact-form {
            /* flex: 1; */
            min-width: 300px;
        }
        
        .contact-form input, .contact-form select, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .contact-form textarea {
            height: 120px;
        }
        
        
        .social-links {
            margin-bottom: 20px;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .process-steps {
                flex-direction: column;
            }
        }
        
        h2 {
            text-align: center;
        }
        
        /* Online Learning Section */
        /* Online Learning Section */
        .online-learning {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            padding: 80px 0;
            text-align: center;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }
        
        .online-learning .subtitle {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 40px;
        }
        
        .online-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px auto;
            max-width: 1000px;
        }
        
        .online-card {
            background: white;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .online-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .online-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .online-card h3 {
            color: var(--dark);
        }
        
        .online-cta {
            margin-top: 40px;
        }
        
        .online-cta p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .online-cta i {
            color: var(--secondary);
            margin-right: 10px;
        }

                        /** Back Home Button */
        /* Back Home Button - Fixed Position */
.back-home {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000; /* Ensure it stays above other elements */
}

.back-home a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #FFCC00; /* Your yellow color */
    color: var(--dark); /* Dark text for contrast */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    border: 2px solid #FFCC00;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    text-decoration: none !important;
}

.back-home a:hover {
    background-color: transparent;
    color: #FFCC00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.back-home a::before {
    content: "\f015"; /* Home icon from Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 16px;
}

/* Pulse animation (same as download button) */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.back-home a:hover {
    animation: pulse 1.5s infinite;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .back-home {
        top: 15px;
        right: 15px;
    }
    
    .back-home a {
        padding: 8px 20px;
        font-size: 12px;
    }
}
        