* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f8f8f8;
  color: #111;
  line-height: 1.6;
}

#wrapper {
  max-width: 1100px;
  margin: 2.5rem auto;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border: 1px solid #e6e6e6;
}

/* HEADER */
header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 2.8rem;
}

header h1 {
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.2rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #000;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero h2 {
  font-size: 2.0rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
  font-size: 1rem;
   text-align: center;
}

/* BRANDS SECTION */
.brands {
  margin-top: 3rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 2.8rem;
}

.brands h2 {
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.brands > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.3rem auto;
  color: #555;
  font-size: 0.98rem;
  text-align: center;
}

.brand-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.brand-card {
  flex: 1;
  min-width: 270px;
  border: 1px solid #e4e4e4;
  background: #fafafa;
  padding: 1.8rem;
  transition:  0.25s;
  text-align: center;
}

.brand-card:hover {
  background: #f2f2f2;
}

.brand-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-align: center;
}

.brand-card p {
  color: #444;
  margin-bottom: 1.3rem;
  text-align: center;
}

.brand-card a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid #000;
  padding-bottom: 0.15rem;
  text-align: center;
}

.brand-card a:hover {
  opacity: 0.7;
  text-align: center;
}

/* CTA */
.cta {
  text-align: center;
  border-top: 1px solid #f0f0f0;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
}


/* FOOTER */
footer {
  border-top: 1px solid #e6e6e6;
  margin-top: 3.8rem;
  padding-top: 1.6rem;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  #wrapper {
    padding: 1.8rem;
    margin: 0;
    border: none;
  }
}
@media (max-width: 500px) {
  header h1 {
    font-size: 1.45rem;
  }
  .hero h2 {
    font-size: 1.65rem;
  }
}