    body {
      line-height: 1.6;
      font-family: 'Inter', sans-serif;
    }
    h1 {
      text-align: center;
      margin-bottom: 0.75rem;
      color: #3b82f6;
      font-size: 2.25rem;
    }
    .tagline {
      text-align: center;
      font-size: 1.1rem;
      color: #374151;
      margin-bottom: 2.5rem;
    }
    .unifier {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem;
      color: #4b5563;
    }
    h3 {
      color: #374151;
      font-size: 1.375rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    a {
      color: #2563eb;
      text-decoration: none;
    }
    button {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      margin-top: 2rem;
      display: inline-block;
    }
    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
    .section {
      max-width: 800px;
      margin: 0 auto 2.5rem;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .product-logo {

 /* height: 64px; */
    }



    /* ========== TOOLS PAGE STYLES ========== */
    
    /* Hero Section */
    .hero-section {
      /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
     /* color: white; */
     /* padding: 4rem 2rem;*/
      text-align: center;
     /* border-radius: 12px; */
     /* margin: 1rem;*/
    }
    
    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 0 0 1rem 0;
      letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
      margin: 0;
      opacity: 0.95;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    /* Tools Container */
    .tools-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    
    /* Tool Card */
    .tool-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .tool-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
    
    .tool-card-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .tool-logo {
      max-width: 100px;
      height: auto;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    .tool-card-content {
      padding: 2rem;
    }
    
    .tool-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      color: #222;
    }
    
    .tool-description {
      color: #555;
      margin: 0 0 1.5rem 0;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    .tool-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }
    
    .tool-features li {
      color: #666;
      margin-bottom: 0.8rem;
      padding-left: 1.5rem;
      position: relative;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    
    .tool-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #667eea;
      font-weight: bold;
    }
    
    .launch-button {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      width: 100%;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .launch-button:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }
    
    .launch-button:active {
      transform: scale(0.98);
    }
    
    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      padding: 3rem 2rem;
      border-radius: 12px;
      margin: 2rem 1rem;
      text-align: center;
    }
    
    .cta-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #222;
      margin: 0 0 1rem 0;
    }
    
    .cta-content p {
      font-size: 1rem;
      color: #555;
      margin: 0 0 2rem 0;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }
    
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .cta-button {
      padding: 0.75rem 2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: inline-block;
    }
    
    .cta-button.primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }
    
    .cta-button.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }
    
    .cta-button.secondary {
      background: white;
      color: #667eea;
      border: 2px solid #667eea;
    }
    
    .cta-button.secondary:hover {
      background: #f0f3ff;
      transform: translateY(-2px);
    }
    
    /* ========== END TOOLS PAGE STYLES ========== */





      /* Tools page mobile styles */
      .hero-section {
        padding: 2.5rem 1.5rem;
        margin: 0.5rem;
      }
      
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-subtitle {
        font-size: 0.95rem;
      }
      
      .tools-container {
        padding: 1rem 0;
        grid-template-columns: 1fr;
      }
      
      .tool-card-header {
        padding: 1.5rem;
      }
      
      .tool-card-content {
        padding: 1.5rem;
      }
      
      .launch-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
      }
      
      .cta-section {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0.5rem;
      }
      
      .cta-content h2 {
        font-size: 1.4rem;
      }
      
      .cta-content p {
        font-size: 0.9rem;
      }
      
      .cta-buttons {
        flex-direction: column;
      }
      
      .cta-button {
        width: 100%;
      }
    
