   :root {
            --primary: #2c6fd6;
            --secondary: #6c757d;
            --light: #f8f9fa;
            --dark: #212529;
            --accent: #17a2b8;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .btn-register {
            background-color: var(--primary);
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-register:hover {
            background-color: #1e5bb1;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
        }
        
        .btn-hero {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            margin: 5px 10px;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border: none;
        }
        
        .btn-primary:hover {
            background-color: #1e5bb1;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        /* How It Works */
        .step-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: none;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .step-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Features */
        .feature-card {
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: none;
            background-color: white;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Commission Cards */
        .commission-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: none;
            background: linear-gradient(145deg, #f0f5ff, #e1ebff);
        }
        
        .commission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .commission-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 15px 0;
        }
        
        /* Testimonials */
        .testimonial-card {
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background-color: white;
            height: 100%;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid var(--primary);
        }
        
        /* FAQ */
        .accordion-button {
            font-weight: 600;
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
        }
        
        /* Contact Form */
        .contact-form {
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background-color: white;
        }
        
        .form-control {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #e1e5eb;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(44, 111, 214, 0.25);
            border-color: var(--primary);
        }
        
        .btn-submit {
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: #1e5bb1;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
      /* Footer Styles */
.site-footer {
  background: #0d1b2a;
  color: #e0e1dd;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
  border-left: 3px solid #00b4d8;
  padding-left: 10px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #adb5bd;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00b4d8;
}

.social-links a {
  display: inline-block;
  background: #1b263b;
  color: #ffffff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00b4d8;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1b263b;
  padding-top: 15px;
  font-size: 14px;
  color: #adb5bd;
}

.footer-bottom span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}
  
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
        }
    