.why-body {
      font-family: 'Poppins', sans-serif;
      background: #f8f9ff;
    }

    .why-section-header .why-section-subtitle {
      color: #764ba2;
      font-weight: 500;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .why-section-header .why-section-title {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .why-service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .why-node {
      background: white;
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
    }

    .why-node:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .why-icon {
      font-size: 2rem;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      transition: background 0.3s ease;
    }

    .why-node:hover .why-icon {
      background: linear-gradient(135deg, #764ba2, #667eea);
    }

    .why-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .why-text {
      font-size: 0.9rem;
      color: #555;
    }

    .why-node.why-visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }