 .enhancement-section {
      padding: 40px 0;
      background: #f8f9fa;
    }
    
    .enhancement-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .enhancement-title {
      text-align: center;
      margin-bottom: 40px;
      color: #2c3e50;
      font-size: 28px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .enhancement-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: #dc3545;
    }
    

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    
    .feature-card {
      background: white;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease;
      border-top: 3px solid #dc3545;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
    }
    
    .feature-icon {
      font-size: 40px;
      color: #dc3545;
      margin-bottom: 15px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .feature-title {
      font-size: 18px;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: bold;
    }
    
    .feature-desc {
      color: #666;
      font-size: 14px;
      line-height: 1.5;
    }
    
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 40px auto;
    }
    
    .timeline-item {
      background: white;
      padding: 20px;
      margin-bottom: 20px;
      border-left: 4px solid #dc3545;
      border-radius: 0 8px 8px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .timeline-year {
      background: #dc3545;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 10px;
      font-weight: bold;
    }
    
    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    
    .stat-box {
      text-align: center;
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .stat-number {
      font-size: 36px;
      font-weight: bold;
      color: #dc3545;
      display: block;
      margin-bottom: 5px;
    }
    
    .stat-label {
      color: #666;
      font-size: 14px;
    }
    

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    
    .team-member {
      text-align: center;
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    .team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #f0f0f0;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: #dc3545;
    }
    

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    
    .cert-item {
      background: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid #e0e0e0;
    }
    
    .cert-icon {
      font-size: 30px;
      color: #dc3545;
      margin-bottom: 10px;
    }
    

    
    .cta-title {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .cta-button {
      display: inline-block;
      background: #dc3545;
      color: white;
      padding: 12px 30px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 15px;
      transition: background 0.3s;
    }
    
    .cta-button:hover {
      background: #c82333;
    }
    

    @media (max-width: 768px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
      
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 480px) {
      .stats-container {
        grid-template-columns: 1fr;
      }
      
      .team-grid {
        grid-template-columns: 1fr;
      }
      
    }