body {
  font-family: "Times New Roman", serif;
  background-color: #f9f9f9;
  color: #333333;
  margin: 0;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-weight: normal;
  color: #444444;
}

.brands-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

h2 {
  margin-top: 0;
  color: #222222;
  align-items: center;
}

h3 {
  color: #333333;
  margin-top: 25px;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #555555;
}

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #777777;
}

/* Brand Logo Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
}



.logo-grid img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo-grid a:hover img {
  transform: scale(1.05);
}
