* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f8f7;
  color: #1f2d2b;
}

.site-header {
  background: white;
  border-bottom: 1px solid #dbe7e4;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0e5f55;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0e7c70;
  color: white;
  font-size: 1.4rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: #1f2d2b;
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  color: #0e7c70;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.alert {
  margin: 18px 0 28px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff4d8;
  border: 1px solid #e6b84c;
  color: #4d3700;
  line-height: 1.5;
  font-size: 1rem;
}

.alert strong {
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, #e4f4f0, #ffffff);
  box-shadow: 0 20px 50px rgba(20, 72, 65, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: #0e7c70;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 800;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: #123b35;
  max-width: 720px;
}

.hero-text p {
  font-size: 1.08rem;
  line-height: 1.65;
}

.lead {
  font-size: 1.25rem;
  font-weight: 800;
  color: #123b35;
}

.location-box {
  margin: 22px 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #b9d9d2;
}

.location-box p {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0e7c70;
  font-size: 0.8rem;
  font-weight: 900;
}

.location-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  color: #123b35;
}

.location-box span {
  display: block;
  line-height: 1.55;
  color: #40524f;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: #0e7c70;
  color: white;
}

.primary:hover {
  background: #095f56;
}

.secondary {
  background: white;
  color: #0e5f55;
  border: 1px solid #b9d9d2;
}

.secondary:hover {
  background: #eef8f6;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  background: #e7ecea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
}

.quick-info {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.panel,
.text-cards article {
  background: white;
  border: 1px solid #dbe7e4;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(20, 72, 65, 0.06);
}

.info-card h2,
.panel h2,
.info-section h2 {
  margin-top: 0;
  color: #0e5f55;
}

.info-card p,
.panel p,
.text-cards p,
.panel li {
  line-height: 1.6;
}

.important {
  background: #fff1f1;
  border-color: #f1b0b0;
}

.important h2 {
  color: #9b1c1c;
}

.large-text {
  font-size: 1.7rem;
  font-weight: 900;
  color: #0e7c70;
  margin: 8px 0;
}

.content-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel ul {
  padding-left: 20px;
}

.note {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f7f6;
  color: #52625f;
  font-size: 0.95rem;
}

.info-section {
  margin-top: 42px;
}

.text-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.text-cards h3 {
  margin-top: 0;
  color: #123b35;
}

.footer {
  margin-top: 50px;
  padding: 28px 24px;
  text-align: center;
  background: #123b35;
  color: white;
}

@media (max-width: 850px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .quick-info,
  .content-grid,
  .text-cards {
    grid-template-columns: 1fr;
  }
}

.lead {
  font-size: 1.3rem;
  font-weight: 700;
  color: #123b35;
  line-height: 1.5;
}

.address-panel {
  margin: 26px 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: white;
  border: 2px solid #b9d9d2;
}

.address-label {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0e7c70;
  font-size: 0.8rem;
  font-weight: 900;
}

.address-panel strong {
  display: block;
  font-size: 1.55rem;
  color: #123b35;
  margin-bottom: 8px;
}

.address-panel p {
  margin: 0;
  line-height: 1.5;
  color: #40524f;
}

.trust-message {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 4px solid #0e7c70;
  font-weight: 800;
  color: #123b35;
}
