
    /* Namespaced container to prevent style leakage */
    .steel-spokes-container {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      color: #111;
      background: #fff;
      line-height: 1.6;
    }
    
    /* Reset styles within container */
    .steel-spokes-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    /* Hero section */
    .steel-hero {
      background: linear-gradient(135deg, #222 0%, #333 100%);
      color: #fff;
      padding: 80px 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      margin-bottom: 50px;
    }
    
    .steel-hero::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
      transform: rotate(30deg);
      z-index: 1;
    }
    
    .steel-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .steel-hero h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    
    .steel-hero p {
      font-size: 1.25rem;
      opacity: 0.85;
      color: #e0e0e0;
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Features section */
    .steel-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 35px;
      margin-bottom: 60px;
    }
    
    .steel-feature-card {
      background: #fff;
      border-radius: 10px;
      padding: 35px 30px;
      position: relative;
      box-shadow: 0 6px 25px rgba(0,0,0,0.06);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid #f0f0f0;
      overflow: hidden;
    }
    
    .steel-feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    
    .steel-feature-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #444;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.6s ease;
    }
    
    .steel-feature-card:hover::after {
      transform: scaleX(1);
    }
    
    .steel-feature-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #222;
      display: flex;
      align-items: center;
    }
    
    .steel-feature-title i {
      margin-right: 18px;
      font-size: 2rem;
      color: #444;
      min-width: 40px;
      text-align: center;
    }
    
    .steel-feature-desc {
      color: #444;
      font-size: 1.08rem;
      line-height: 1.75;
    }
    
    /* Animations */
    @keyframes cardAppear {
      from { 
        opacity: 0; 
        transform: translateY(25px) rotate(1deg);
      }
      to { 
        opacity: 1; 
        transform: translateY(0) rotate(0);
      }
    }
    
    .steel-animated {
      animation: cardAppear 0.8s ease-out forwards;
      opacity: 0;
    }
    
    /* Responsive design */
    @media (max-width: 900px) {
      .steel-features {
        gap: 25px;
      }
    }
    
    @media (max-width: 768px) {
      .steel-hero {
        padding: 60px 25px;
      }
      
      .steel-hero h1 {
        font-size: 2.4rem;
      }
      
      .steel-hero p {
        font-size: 1.15rem;
      }
      
      .steel-features {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }
    
    @media (max-width: 480px) {
      .steel-hero {
        padding: 50px 20px;
      }
      
      .steel-hero h1 {
        font-size: 2rem;
      }
      
      .steel-feature-card {
        padding: 30px 25px;
      }
      
      .steel-feature-title {
        font-size: 1.4rem;
      }
    }
  