@font-face {
  font-family: "Freight";
  src:
    local("Freight Disp Book"),
    local("Freight-DispBook"),
    url("/static/fonts/Freight-DispBook.woff2") format("woff2"),
    url("/static/fonts/Freight-DispBook.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content pages (404, confirmation pages, etc.) */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.page-content h1 {
  font-family: "Freight", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .page-content h1 {
    font-size: 3rem;
  }
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

/* Logo - Default (for overlaying hero images) */
.logo-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 21px 24px;
}

.logo-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
}

.logo-svg {
  height: 36px;
  width: auto;
  max-width: 220px;
}

@media (min-width: 1024px) {
  .logo-header {
    padding: 21px 36px;
  }
}

/* Logo - Interior pages (solid background) */
.logo-header-interior {
  position: relative;
  background-color: #2d2d2d;
  padding: 21px 24px;
}

@media (min-width: 1024px) {
  .logo-header-interior {
    padding: 21px 36px;
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-light {
  background-color: #fafafa;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.section-title {
  font-family: "Freight", serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d2d2d;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.2rem;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: #078f8b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 143, 139, 0.2);
}

.btn-primary:hover {
  background-color: #006a80;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 143, 139, 0.35);
  color: #fff;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid #e6e6e6;
  width: 100%;
  padding: 24px 24px 42px 24px;
  background-color: #fcfcfc;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 0 24px 33px 24px;
    border-top: none;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 0 0 81px 0;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    padding-top: 41px;
    border-top: 1px solid #e6e6e6;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1128px;
    padding: 73px 36px 0;
  }
}

@media (min-width: 1200px) {
  .footer-content {
    max-width: 1056px;
    padding: 73px 0 0;
  }
}

.footer-organization {
  flex-shrink: 0;
  flex-basis: 250px;
  display: none;
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-organization {
    display: block;
    order: 1;
    margin-right: 12px;
  }
}

@media (min-width: 1024px) {
  .footer-organization {
    flex-basis: 250px;
    margin-right: 57px;
  }
}

.footer-logo-link {
  display: block;
  margin-bottom: 14px;
}

.footer-logo {
  height: 30px;
  width: auto;
  filter: brightness(0);
}

.footer-description {
  font-size: 13px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
}

.footer-description strong {
  font-weight: 600;
}

.footer-copyright {
  font-size: 13px;
  color: #4a4a4a;
  margin-top: 32px;
}

.footer-copyright a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copyright a:hover {
  color: #078f8b;
}

.footer-links {
  order: 2;
  flex-basis: 165px;
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-links {
    padding-top: 2px;
    margin-right: 12px;
  }
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  min-height: 24px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .footer-links li {
    margin-bottom: 0;
  }
}

.footer-links a {
  font-size: 16px;
  line-height: 24px;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #078f8b;
}

.footer-legal {
  flex-shrink: 0;
  order: 5;
  display: none;
  flex-basis: 109px;
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-legal {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-right: 12px;
  }
}

@media (min-width: 1024px) {
  .footer-legal {
    margin-right: 0;
  }
}

.footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  font-size: 13px;
  color: #b2b2b2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #078f8b;
}

.footer-mobile-bottom {
  background-color: #f0f0f0;
  padding: 16px;
  margin: 0 -24px -42px;
}

@media (min-width: 768px) {
  .footer-mobile-bottom {
    display: none;
  }
}

.footer-copyright-mobile {
  font-size: 13px;
  color: #b2b2b2;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-copyright-mobile:hover {
  color: #078f8b;
}

.footer-legal-mobile {
  display: flex;
  gap: 24px;
}

.footer-legal-mobile a {
  font-size: 13px;
  color: #b2b2b2;
  text-decoration: none;
}

.footer-legal-mobile a:hover {
  color: #078f8b;
}

/* Ampersand styling */
span.amp {
  font-family:
    Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", serif;
  font-size: 90%;
  margin-right: 2px;
  font-style: italic;
}

/* Links */
a {
  color: #078f8b;
}

a:hover {
  color: #006a80;
}
