* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FCFAF5;
  color: #1e2a2f;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .serif-heading {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Color palette - Lush Harmony */
:root {
  --green-light: #5bba6f;
  --green-soft: #3fa34d;
  --green-primary: #2a9134;
  --green-deep: #137547;
  --green-dark: #054a29;
  --gray-bg: #F9F9F9;
  --gray-text: #2c3e2f;
  --white: #ffffff;
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--green-primary);
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn:hover {
  background-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(21, 117, 71, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--green-primary);
  color: white;
}

/* Header / Nav */
.navbar {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(2px);
  background-color: rgba(255,255,255,0.96);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo h2 {
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 700;
}

.logo span {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--green-deep);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1f3b2c;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green-primary);
}

.mobile-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--green-dark);
}

/* Hero */
.hero {
  padding: 60px 0 40px;
}

.hero-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 0.8;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}

.badge {
  background: #eef6e8;
  color: var(--green-deep);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #2d4a3b;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-light {
  background-color: var(--gray-bg);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
  color: var(--green-dark);
}

/* Cards */
.cards-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 32px 28px;
  flex: 1 1 280px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.02);
}

.card i {
  font-size: 2.5rem;
  color: var(--green-primary);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

/* Consultation card */
.consult-card {
  background: var(--white);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 8px solid var(--green-primary);
}

/* Two column layout */
.two-column {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.two-column > div {
  flex: 1;
}

.handout-highlight {
  background: #ecf8ef;
  border-radius: 24px;
  padding: 28px;
}

/* Form */
.booking-form {
  background: white;
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 24px;
  border: 1px solid #cfdfd3;
  font-family: inherit;
}

/* Footer */
.footer {
  background: var(--green-dark);
  color: #dfeee2;
  padding: 48px 0 24px;
  margin-top: 20px;
}

.footer a {
    color:#c8e6d5;
    text-decoration:none;
}
.disclaimer {
  font-size: 0.75rem;
  text-align: center;
  border-top: 1px solid #2f6a47;
  padding-top: 24px;
  margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 48px 0;
  }

  .consult-card {
    padding: 24px;
  }

  .mobile-nav-open {
    display: flex;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.05);
    border-radius: 0 0 24px 24px;
    z-index: 99;
  }
}

.success-message {
  background: var(--green-primary);
  color: white;
  padding: 12px;
  border-radius: 60px;
  text-align: center;
  margin-top: 16px;
}
