* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  color: #575757;
  background: #ffffff;
  line-height: 1.6;
}

.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding: 0 3rem;
  gap: 3rem;
}

.banner:nth-child(odd) {
  background-color: #fafafa;
}

.banner.reverse .content {
  order: 2;
}

.banner.reverse .image {
  order: 1;
}

.banner .content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner .content h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #2c2c2c;
  line-height: 1.2;
  width: 100%;
}

.banner .content>p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 750px;
  text-align: justify;
  margin: 0 auto 1.2rem;
  width: 100%;
}

/* Stockists section */
.stockists {
  margin: 2rem 0;
  max-width: 750px;
  width: 100%;
}

.stockists h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 1.5rem 0 0.8rem 0;
  text-align: center;
}

.stockists p {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Links styling */
.banner .content a {
  color: #d4a762;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.banner .content a:hover {
  color: #b38c4a;
  text-decoration: underline;
}

.banner .image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.banner .image img {
  width: 100%;
  max-width: 950px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.banner .image img[src$=".png"],
.banner .image img[src$=".jpg"] {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 2.5rem;
  background-color: #2c2c2c;
  color: white;
  font-size: 1.1rem;
}

footer p {
  margin-bottom: 0.5rem;
}

sup {
  font-size: 0.7em;
  vertical-align: super;
}

@media (max-width: 900px) {
  .banner {
    grid-template-columns: 1fr;
    padding: 2rem 4%;
    gap: 1.5rem;
    min-height: auto;
  }

  .banner .content {
    padding: 0.5rem 0;
    align-items: flex-start;
  }

  .banner .content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .banner .content>p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left;
  }

  .stockists {
    margin: 1.5rem 0;
    max-width: 100%;
  }

  .stockists h3 {
    font-size: 1.6rem;
    margin: 1.2rem 0 0.6rem 0;
    text-align: left;
  }

  .stockists p {
    font-size: 1.2rem;
    text-align: left;
  }

  .banner.reverse .content,
  .banner.reverse .image {
    order: 0;
  }

  .banner .image {
    padding: 0.5rem 0;
  }

  .banner .image img {
    max-width: 100%;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner {
    padding: 1.5rem 3%;
  }

  .banner .content h2 {
    font-size: 2.5rem;
  }

  .banner .content>p {
    font-size: 1.2rem;
  }

  .stockists h3 {
    font-size: 1.4rem;
  }

  .stockists p {
    font-size: 1.1rem;
  }

  footer {
    padding: 1.5rem 0.5rem;
    font-size: 0.9rem;
  }
}

.club-button {
  display: inline-block;
  background-color: #d4a762;
  color: white !important;
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.club-button:hover {
  background-color: #b38c4a;
  text-decoration: none !important;
}

.club form {
  width: 100%;
  max-width: 600px;
}

form {
  width: 100%;
  max-width: 600px;
}

form label {
  display: block;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  background-color: white;
}

form textarea {
  height: 120px;
}

form button {
  border: none;
  cursor: pointer;
}

form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

form label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dob-selects {
  display: flex;
  gap: 10px;
  width: 100%;
}

.dob-selects select {
  flex: 1;
}