 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
      caret-color: transparent;
    }

    html, body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      background: #f9f9f9;
      color: #333;
    }

    header {
      background: #fff;
      border-bottom: 1px solid #ddd;
      padding: 1rem 1rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
      font-size: 1.7rem;
      font-weight: 600;
      color: #222;
    }

    .logo-img {
      height: 30px;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
    }
    nav {
      display: flex;
      justify-content: center;
      flex: 1 1 100%;
      gap: 4rem;
      margin-bottom: 1rem;
      margin-top: 1rem;
    }

    nav a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
    }

    nav a:hover {
      color: #0056d2;
    }

    .hero {
      text-align: center;
      padding: 2rem 1rem 1rem;
      background-image: url(/header_graphic_2x.3d940c4e.png);
      width: 100%;
      height:10rem;
    }

    .hero h1 {
      font-size: 2rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1rem;
      color: #fff;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.5rem;
      padding: 1.5rem;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: box-shadow 0.2s ease;
      text-decoration: none;
      color: inherit;
    }

    .card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      padding: 1rem;
    }

    footer {
      background: #f9f9f9;
      padding: 2rem;
      font-size: 0.85rem;
      border-top: 1px solid #eee;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
    }

    .footer-section h4 {
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section li {
      margin: 0.3rem 0;
    }

    .footer-section a {
      text-decoration: none;
      color: #444;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      color: #888;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: stretch;
      }

      .search-bar {
        flex-direction: row;
        width: 100%;
        margin-top: 1rem;
      }

      nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 1rem;
      }
      .hero{
        background-size: contain;
      }
      .hero h1 {
        font-size: 1.6rem;
        margin-top: 1.5rem;
      }

      .hero p {
        font-size: 0.95rem;
      }

      .grid {
        grid-template-columns: 1fr;
        padding: 1rem;
      }
    }
