/* Book (regular body) */
body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background-color: #f9f9f9;
  color: #595c5f;
}

/* Logo */
.logo-area {
  text-align: center;
  padding: 2rem;
}

.logo-area img {
  max-height: 40px;
}

/* Hero Image */
.hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 45vh; /* Limit image to 45% of the viewport height */
  object-fit: cover;
}

/* Content Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #f0f2f5;
}

.box {
  background: white;
  padding: 2.5rem;
  flex: 1 1 300px;
  max-width: 400px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 0;
  box-shadow: none;
}
/* Logo area */
.logo-area {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f9f9f9; /* Same as page background */
  height: auto;
  text-align: center;
  padding: 1.5rem 1rem;
}

.logo-area img {
  max-height: 40px;
}

h2 {
  font-size: 44px;
  line-height: 56px;
  font-weight: 700; /* Work Sans Black */
  letter-spacing: -0.75%;
  color: #072136;
  margin-bottom: 1rem;
}

a {
  color: #002f6c;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
}

p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400; /* Work Sans Book */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #595c5f;
  margin: 1rem 0;
}

strong {
  font-weight: 700;
  color: #072136;
}

/* Button Style */
.links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto; /* key line */
}

.links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; /* Work Sans Medium */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #072136;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.75rem;
  border: 2px solid #072136;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.links a .material-symbols-rounded {
  font-size: 20px;
}

.links a:hover {
  background-color: #072136;
  color: white;
}

@media (max-width: 1000px) {
  h2 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    font-weight: 700;
  }

  p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }

  .logo-area {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .logo-area img {
    max-height: 36px;
  }

  .links a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    align-items: flex-start;
  }

  .footer-left {
    width: 100%;
    text-align: left;
  }

  .footer-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    display: flex;
    width: 100%;
  }

  .footer-label {
    font-weight: 500;
    white-space: nowrap;
  }

  .footer-address {
    flex: 1;
    min-width: 200px;
  }
}

/* Footer */
footer {
  background: #0b1f33;
  padding: 2rem 1.5rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #C7CDD3;
}

.footer-divider {
  height: 1px;
  background-color: #C7CDD3;
  max-width: 1000px;
  margin: 0 auto 1.5rem auto;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer-left {
  flex-grow: 1; /* fill remaining space */
  color: #C7CDD3;
  white-space: nowrap;
}

.footer-right {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  gap: 0.75rem; /* spacing between label and address */
  color: #C7CDD3;
  white-space: nowrap;
}

.footer-right p {
  margin: 0;
  color: #C7CDD3; /* ✨ force it here too */
}

.footer-right strong {
  font-weight: 500;
  color: #C7CDD3;
}


.footer-label {
  font-weight: 500;
  color: #C7CDD3;
  white-space: nowrap;
}

.footer-address {
  white-space: normal;
  word-break: break-word;
  flex: 1;
}

footer a {
  color: #C7CDD3;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

.nowrap {
  white-space: nowrap;
}