    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    .driving-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: #111827;
    }

    .page-subtitle {
      text-align: center;
      font-size: 1rem;
      color: #6b7280;
      margin-bottom: 40px;
    }

    /* Featured Product */
    .featured-product {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #fff;
      border-radius: 20px;
      padding: 35px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 30px;
      align-items: center;
      margin-bottom: 45px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .featured-badge {
      display: inline-block;
      background: #f59e0b;
      color: #111827;
      font-weight: bold;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.9rem;
      margin-bottom: 18px;
    }

    .featured-product h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .featured-product p {
      color: #e5e7eb;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .price {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #fbbf24;
    }

    .buy-btn {
      display: inline-block;
      background: #22c55e;
      color: white;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: bold;
      transition: 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .buy-btn:hover {
      background: #16a34a;
      transform: translateY(-2px);
    }

    .featured-image {
      background: rgba(255,255,255,0.08);
      border-radius: 18px;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      border: 1px solid rgba(255,255,255,0.15);
    }

    /* Section Title */
    .section-title {
      font-size: 1.6rem;
      margin-bottom: 20px;
      color: #111827;
      text-align: center;
    }

    /* Grid Products */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .product-card {
      background: #fff;
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: 0.3s ease;
      border: 1px solid #e5e7eb;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .product-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #111827;
    }

    .product-card p {
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 16px;
      min-height: 78px;
    }

    .small-price {
      font-size: 1.4rem;
      font-weight: bold;
      color: #2563eb;
      margin-bottom: 14px;
    }

    .small-btn {
      width: 100%;
      background: #2563eb;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s ease;
      font-size: 1rem;
    }

    .small-btn:hover {
      background: #1d4ed8;
    }

    .note {
      margin-top: 35px;
      text-align: center;
      color: #6b7280;
      font-size: 0.95rem;
    }

    @media (max-width: 900px) {
      .featured-product {
        grid-template-columns: 1fr;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .page-title {
        font-size: 1.8rem;
      }

      .featured-product h2 {
        font-size: 1.5rem;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .featured-image {
        min-height: 180px;
        font-size: 4rem;
      }
    }