header h1 {
    margin: 0;
    font-size: 2.5rem;
  }

  main {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
  }

  .brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .brand-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .brand-card:hover {
    transform: translateY(-5px);
  }

  .brand-card img {
    max-width: 120px;
    margin-bottom: 1rem;
  }

  .brand-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .brand-card p {
    font-size: 1.5rem;
    color: #666;
  }