  body {
      font-family: 'Montserrat', sans-serif;
      background: #f5f5f5;
      margin: 0;
      padding: 0;
    }

    .intro-section {
      max-width: 900px;
      margin: 60px auto 20px;
      text-align: center;
      padding: 0 20px;
    }

    .intro-section h2 {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 15px;
      color: #333;
    }

    .intro-section p {
      font-size: 15px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 35px;
    }

    .intro-section h3 {
      color: #f58220;
      font-size: 20px;
      font-weight: 700;
    }

    .grid-mixers {
      max-width: 1200px;
      margin: 20px auto 60px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .mixer-card {
      background: white;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s;
    }

    .mixer-card:hover {
      transform: scale(1.03);
    }

    .mixer-card img {
      max-width: 100%;
      height: auto;
      margin-bottom: 8px;
      border-radius: 8px;
    }

    .mixer-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #333;
    }

    .features {
      text-align: left;
      padding-left: 16px;
      margin: 8px 0 16px;
    }

    .features li {
      font-size: 13px;
      color: #555;
      line-height: 1.4;
      margin-bottom: 5px;
    }

    .btn-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #4b4b4b;
      padding: 10px 18px;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      transform: skew(-10deg);
      min-width: 140px;
      height: 44px;
      margin: auto;
    }

    .btn-card:hover {
      background-color: #333;
      transform: skew(-10deg) scale(1.05);
    }

    .first-three {
      color: #f58220;
      font-weight: bold;
      font-size: 20px;
      display: inline-block;
      transform: skew(10deg);
      margin-right: 5px;
    }