@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap");

:root {
  /* Update these values to align with the company's brand palette */
  --color-background: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #4a4a4a;
  --color-accent: #006d77;
  --font-family-base: "Nunito", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

/* Anchor links inherit text color for a clean minimalist look */
a,
a:visited {
  color: inherit;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.site-header {
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.branding {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.logo {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-nav {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.contact {
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-card {
  width: min(520px, 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--color-background);
}

.contact-heading {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
}

.contact-list a {
  color: inherit;
}

.icon {
  width: 24px;
  height: 24px;
  display: block;
}

.site-footer {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.terms-link {
  font-weight: 600;
}

.terms {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  display: flex;
  justify-content: center;
}

.terms-content {
  width: min(800px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.terms-content h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 500;
}

.terms-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.terms-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}
