/* Critical Above-the-Fold CSS */
:root {
  --primary-dark: #09262e;
  --primary-teal: #009381;
  --primary-light: #b6cdb0;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.55;
  color: #222;
  background: #fff;
}

header[aria-label="Site Header"] {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #0b2f37;
}

.site-nav-wrapper {
  width: 100%;
  margin: 0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: transparent;
  border-radius: 0;
  margin-top: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.02rem;
}

.page-hero {
  background: linear-gradient(135deg, #09262e 0%, #009381 100%);
  color: #fff;
  padding: 110px 20px 70px;
  position: relative;
  overflow: hidden;
}
