/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #284148;
  background: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Risk Warning Banner */
.risk-banner {
  background-color: #284148;
  color: #fff;
  padding: 16px 10px;
  text-align: center;
}

.risk-banner__content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
}

.risk-banner__content p {
  margin: 0;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-bottom: 36px;
  flex: 1;
}

/* Logos Section */
.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 16px 0;
  flex-wrap: wrap;
  width: 100%;
}

.logos__amana {
  max-width: 211px;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos__amana img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logos__arrow {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos__arrow img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logos__kinsworth {
  max-width: 342px;
  flex-shrink: 1;
}

.logos__kinsworth img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Content Section */
.content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 912px;
  width: 100%;
}

.content-section__heading {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: #284148;
  max-width: 882px;
}

.content-section__description {
  font-size: 20px;
  text-align: center;
  color: #284148;
  max-width: 882px;
  line-height: 1.4;
}

.content-section__description p {
  margin: 0;
}

.content-section__rebrand {
  font-size: 20px;
  text-align: center;
  color: #284148;
  max-width: 774px;
  line-height: 1.4;
}

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2c4b4c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 400px;
  font-size: 16px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}

.button:hover {
  opacity: 0.9;
}

/* Contact Info */
.contact-info {
  font-size: 16px;
  text-align: center;
  color: #284148;
}

/* Footer */
.footer {
  background-color: #284148;
  color: #fff;
  padding: 32px 24px;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  line-height: 1.4;
}

.footer p {
  margin: 0;
}

.footer__address,
.footer__website,
.footer__risk-warning,
.footer__legal {
  width: 100%;
}

.footer__risk-warning p,
.footer__legal p {
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .logos {
    flex-direction: column;
    gap: 16px;
  }

  .logos__arrow {
    width: 48px;
    height: 48px;
  }

  .logos__arrow img {
    transform: rotate(90deg);
  }

  .content-section__heading {
    font-size: 32px;
  }

  .content-section__description,
  .content-section__rebrand {
    font-size: 16px;
  }
}
