    :root {
      --accent: #EE9303;
      --text-dark: #000000;
      --text-light: #ffffff;
      --bg-light: #ffffff;
      --bg-gray: #f9f9f9;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    header {
      background: linear-gradient(to right, #ffffff, #f2f2f2);
      padding: 4rem 2rem;
      text-align: center;
    }

    header h1 {
      font-size: 3rem;
      color: var(--text-dark);
    }

    header p {
      font-size: 1.2rem;
      color: var(--text-dark);
      margin-top: 1rem;
    }

    nav {
      background-color: var(--accent);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav a {
      color: var(--text-light);
      margin: 0 1rem;
      text-decoration: none;
      font-weight: bold;
    }

    .hero {
      background: url('https://via.placeholder.com/1200x500') center/cover no-repeat;
      height: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--text-light);
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .hero h2 {
      font-size: 3rem;
    }

    .section {
      padding: 4rem 2rem;
      text-align: center;
    }

    .section h2 {
      color: var(--accent);
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .product {
      background: var(--bg-gray);
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .product:hover {
      transform: translateY(-5px);
    }

    .product img {
      width: 100%;
      border-radius: 8px;
    }

    .product h3 {
      color: var(--accent);
      margin-top: 1rem;
    }

    .product p {
      font-size: 0.95rem;
      margin-top: 0.5rem;
    }

    footer {
      background-color: #f1f1f1;
      color: var(--accent);
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2.2rem;
      }

      .hero h2 {
        font-size: 2rem;
        text-align: center;
        padding: 1rem;
      }
    }
