 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
      overflow-x: hidden;
    }

    /* Navbar */
    header {
      background: #fff;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    header h1 {
      color: #22c55e;
      font-size: 24px;
      display: flex;
      align-items: center;
    }
    
    header h1 i {
      margin-right: 10px;
      animation: pulse 2s infinite;
    }
    
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }
    
    nav a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #22c55e;
      transition: width 0.3s ease;
    }
    
    nav a:hover {
      color: #22c55e;
    }
    
    nav a:hover:after {
      width: 100%;
    }
    
    .btn {
      background: #22c55e;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(34, 197, 94, 0.2);
    }
    
    .btn:hover {
      background: #16a34a;
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(34, 197, 94, 0.3);
    }

    /* Large Section */
    .Large {
      text-align: center;
      padding: 120px 20px 80px;
      background: linear-gradient(135deg, #eef6f0 0%, #d1fae5 100%);
      position: relative;
      overflow: hidden;
    }
    
    .Large-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .Large h2 {
      font-size: 42px;
      margin-bottom: 20px;
      color: #1f2937;
      animation: fadeInDown 1s ease;
    }
    
    .Large p {
      margin-bottom: 30px;
      font-size: 20px;
      color: #4b5563;
      animation: fadeInUp 1s ease;
    }
    
    .Large-image {
      max-width: 600px;
      margin: 40px auto 0;
      animation: float 4s ease-in-out infinite;
    }
    
    .Large-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* Features Section */
    .features {
      padding: 80px 20px;
      text-align: center;
      background: #fff;
    }
    
    .features h2 {
      font-size: 36px;
      margin-bottom: 50px;
      color: #1f2937;
      position: relative;
      display: inline-block;
    }
    
    .features h2:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: #22c55e;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .features-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .feature-box {
      background: #fff;
      padding: 30px;
      width: 350px;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
    }
    
    .feature-box.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
      font-size: 40px;
      color: #22c55e;
      margin-bottom: 20px;
    }
    
    .feature-box h3 {
      margin-bottom: 15px;
      color: #1f2937;
      font-size: 22px;
    }
    
    .feature-box p {
      color: #6b7280;
      line-height: 1.6;
    }

    /* Stats Section */
    .stats {
      padding: 60px 20px;
      background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
      color: white;
      text-align: center;
    }
    
    .stats-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .stat-item {
      padding: 20px;
    }
    
    .stat-number {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .stat-text {
      font-size: 18px;
      opacity: 0.9;
    }

    /* register Section */
    .register {
      padding: 80px 20px;
      text-align: center;
      background: #f8fafc;
    }
    
    .register h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #1f2937;
    }
    
    .register p {
      font-size: 18px;
      color: #6b7280;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    /* Footer */
    footer {
      background: #1f2937;
      color: #fff;
      text-align: center;
      padding: 40px 20px;
    }
    
    .footer-content {
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
    }
    
    .footer-links a {
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: #22c55e;
    }
    
    .social-icons {
      margin: 20px 0;
    }
    
    .social-icons a {
      color: #fff;
      font-size: 20px;
      margin: 0 10px;
      transition: color 0.3s ease;
    }
    
    .social-icons a:hover {
      color: #22c55e;
    }
    
    .copyright {
      margin-top: 20px;
      color: #9ca3af;
    }

    /* Animations */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        padding: 15px;
      }
      
      nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }
      
      nav a {
        margin: 5px;
      }
      
      .Large h2 {
        font-size: 32px;
      }
      
      .Large p {
        font-size: 18px;
      }
      
      .features-container {
        flex-direction: column;
        align-items: center;
      }
      
      .stats-container {
        flex-direction: column;
        gap: 20px;
      }
    }