* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f5f7;
  color: #1f2937;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #14844f;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.logo span {
  color: #bff4d8;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: #bff4d8;
}

.btn-primary {
  display: inline-block;
  background: #40b8ec;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  border: 0;
}

.btn-primary:hover {
  background: #1aa6e2;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #101827;
  padding: 10px 18px;
  border-radius: 7px;
  font-weight: 700;
}

.hero {
  background: #14844f;
  color: #fff;
  padding: 56px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
}

.hero p {
  color: #d8f7e5;
}
    
.hero-art {
  min-height: 300px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 36px rgba(5, 20, 34, 0.25);
  position: relative;
  overflow: hidden;
  background: #0a1628;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
}

.section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.cards-2,
.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0 0 10px;
}

.icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.img-block {
  min-height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: #0d1f3d;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.img-block img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
}

.section-img {
  margin: 0 auto 22px;
  max-width: 720px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.section-img img {
  width: 100%;
  height: auto;
  display: block;
}

.long-copy h2 {
  font-size: 1.9rem;
  margin-top: 0;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid #d8dde7;
  border-radius: 10px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 16px;
}

.faq-item p {
  padding: 0 16px 16px;
  margin: 0;
}

.page-hero {
  background: #e7f8ef;
  border-bottom: 1px solid #d7ebde;
  padding: 42px 0;
}

.page-hero h1 {
  margin: 0;
}

.blog-card h3 {
  font-size: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e5e7eb;
}

th,
td {
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f3f4f6;
}

.note-box {
  border-left: 4px solid #22c55e;
  background: #ecfdf3;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 10px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.step-no {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #14844f;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  background: #e5f6ee;
  border: 1px solid #b7e5cf;
  color: #0f5132;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.93rem;
  font-weight: 600;
}

.site-footer {
  margin-top: 40px;
  background: #14844f;
  color: #fff;
  padding: 42px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: #d8f7e5;
}

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

.float-cta {
  position: fixed;
  right: 15px;
  bottom: 14px;
  z-index: 1200;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cards-4,
  .cards-3,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .cards-4,
  .cards-3,
  .cards-2,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }
}
