/* Base */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: #fff;
}

/* Header (white area with centered logo + thin line) */
.site-header {
  display: flex;
  justify-content: center;
  padding: 22px 16px;
  border-bottom: 2px solid #bdbdbd;
}

.site-header img {
  width: 275px;        /* match screenshot scale */
  height: auto;
  display: block;
}

/* Gray middle section */
.brand-selection {
  background: #e6e6e6;
  text-align: center;
  padding: 40px 16px 60px;
}

.brand-selection h1 {
  margin: 0 0 30px;
  font-size: 52px;     /* big headline like screenshot */
  font-weight: 600;
}

/* 3-card row */
.brand-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 320px));
  justify-content: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Make the whole card clickable */
.brand-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Card box */
.brand-card {
  background: #ffffff;
  border: 1.5px solid #8a8a8a;
  border-radius: 12px;
  padding: 28px;
  
  transition: all 0.35s cubic-bezier(.4,.2,.2,1);
  
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.brand-item:hover .brand-card {

  transform: translateY(-8px) scale(1.02);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    0 2px 8px rgba(0,0,0,0.08);

  border-color: #b5b5b5;
}
.brand-card img {
  transition: transform 0.35s ease;
}

.brand-item:hover img {
  transform: scale(1.05);
}
.brand-item:hover .brand-card {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafafa 100%
  );
}

/* Logos inside card */
.brand-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text under card */
.brand-text {
  margin-top: 16px;
}

.brand-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.brand-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

/* Footer bar */
.site-footer {
  background: #bfbfbf;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
}