:root {
  --dark-green: #075a22;
  --green: #44a51c;
  --light-green: #edf8e9;
  --text: #102818;
  --soft: #f7fbf5;
  --border: #dbeed5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: white;
}

.site-header {
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--border);
}

.logo {
  width: 230px;
  max-width: 58vw;
  height: auto;
  display: block;
}

.book-btn,
.main-btn,
button {
  background: var(--dark-green);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
}

.book-btn:hover,
.main-btn:hover,
button:hover {
  background: var(--green);
}

.hero {
  text-align: center;
  padding: 80px 8% 90px;
  background: linear-gradient(120deg, #fff9d8, white 42%, #eaf4ff);
}

.eyebrow {
  color: var(--dark-green);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 20px auto;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  color: #153c20;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 21px;
  line-height: 1.6;
}

.services,
.booking {
  padding: 70px 8%;
}

h2 {
  text-align: center;
  font-size: 38px;
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
}

.card h3 {
  color: var(--dark-green);
  font-size: 26px;
}

.card p {
  font-size: 18px;
  line-height: 1.5;
}

.booking {
  background: var(--light-green);
}

.booking > p {
  text-align: center;
  font-size: 18px;
}

form {
  max-width: 680px;
  margin: 30px auto 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(7, 90, 34, 0.08);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #cfe3c8;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
}

button {
  width: 100%;
  font-size: 17px;
  margin-top: 8px;
}

footer {
  text-align: center;
  padding: 26px;
  background: var(--dark-green);
  color: white;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    width: 210px;
    max-width: 85vw;
  }

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

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


.pricing-box {
  max-width: 680px;
  margin: 28px auto 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(7, 90, 34, 0.08);
}

.pricing-box h3 {
  margin-top: 0;
  color: #075a22;
  font-size: 28px;
}

.pricing-box p {
  font-size: 18px;
  margin: 10px 0;
}

.fee-note {
  color: #075a22;
}
