body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
.site-nav__brand {
  color: #004466;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.2px;
  margin-right: 1rem;
}
.site-nav__brand:hover,
.site-nav__brand:focus {
  color: #006699;
}
.site-nav__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav__menu a {
  color: #333;
  margin-right: 1rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}
.site-nav__menu a:hover,
.site-nav__menu a:focus {
  color: #006699;
}
.site-nav__menu a[aria-current="page"] {
  color: #006699;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-nav__menu a.nav-cta {
  background: #006699;
  color: #ffffff;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  margin-right: 0;
}
.site-nav__menu a.nav-cta:hover,
.site-nav__menu a.nav-cta:focus {
  background: #004f7a;
  color: #ffffff;
}
.site-nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.45rem 0.65rem;
}
.site-nav__toggle:hover,
.site-nav__toggle:focus {
  border-color: #006699;
  color: #006699;
}
.site-nav__toggle-icon {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  margin-right: 0.4rem;
  transform: translateY(-1px);
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(32rem, 72vh, 48rem);
  overflow: hidden;
  text-align: left;
  color: #ffffff;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 35, 56, 0.78) 0%, rgba(3, 35, 56, 0.46) 52%, rgba(3, 35, 56, 0.2) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(42rem, calc(100% - 3rem));
  margin: clamp(1.5rem, 7vw, 5rem);
  background: rgba(7, 28, 42, 0.62);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}
.hero-content h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.08;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 34rem;
}
.page-hero {
  padding-top: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 65%);
  border-top: 4px solid #006699;
}
.page-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 102, 153, 0.1);
  color: #005577;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.page-meta time {
  font-weight: 600;
}
.hero .page-meta,
.cta .page-meta {
  background: rgba(255, 255, 255, 0.14);
  color: #f2f8fc;
}
.hero-content a.button {
  display: inline-block;
  margin-top: 1rem;
  background: #006699;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
}
section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  margin-bottom: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
section h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #004466;
}
section h3 {
  font-size: 1.4rem;
  color: #005577;
}
figure {
  margin: 1rem 0;
}
figure img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
figcaption {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.flex .half {
  flex: 1 1 48%;
}
.gallery-visuals .gallery-card {
  margin: 0;
}
.gallery-visuals .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem;
  align-items: start;
}
.gallery-visuals .gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}
@media (max-width: 1024px) {
  .gallery-visuals .gallery-image {
    height: 280px;
  }
}
@media (max-width: 640px) {
  .gallery-visuals .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-visuals .gallery-image {
    height: 240px;
  }
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #004466;
}
.cta {
  text-align: center;
  background: #004466;
  color: #ffffff;
  padding: 2rem;
  border-radius: 5px;
}
.cta h2 {
  color: #ffffff;
}
.cta a {
  display: inline-block;
  margin-top: 1rem;
  background: #005f78;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.cta a:hover,
.cta a:focus {
  background: #004e63;
  color: #ffffff;
}
footer {
  background: #333;
  color: #f0f0f0;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .site-nav {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .site-nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    padding: 0.8rem;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    gap: 0.2rem;
    z-index: 120;
  }
  .site-nav__menu[hidden] {
    display: none !important;
  }
  .site-nav__menu.is-open {
    display: flex;
  }
  .site-nav__menu a,
  .site-nav__menu a.nav-cta {
    margin-right: 0;
  }
  .site-nav__menu a.nav-cta {
    margin-top: 0.35rem;
  }
  .flex .half {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 0;
    align-items: stretch;
  }
  .hero-content {
    width: calc(100% - 2rem);
    margin: 1rem;
    align-self: flex-end;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    max-width: none;
  }
  .page-meta {
    font-size: 0.82rem;
  }
}
