/* Reset some default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f7f5;
  color: #1b1b1b;
}

/* Header */
header {
  background-color: #1f4d3a;
  color: white;
  padding: 20px 40px;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Headings */
h1 {
  font-size: 32px;
  color: #1f4d3a;
  margin-bottom: 20px;
}

/* Paragraphs */
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}
button {
  background-color: #1f4d3a;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #163828;
}
/* General Styles */
body {
  margin: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background-color: #f5f7f5; /* soft off-white */
  color: #1a1a1a;
}

/* Navigation */
header {
  padding: 20px 40px;
  background-color: #ffffff;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 120px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 24px;
  margin: 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

/* Primary Button */
.primary {
  background-color: #1f4d3a; /* forest green */
  color: white;
}

/* Secondary Button */
.secondary {
  border: 1px solid #1f4d3a;
  color: #1f4d3a;
}

/* Link */
.link {
  display: block;
  margin-top: 10px;
  color: #1f4d3a;
  text-decoration: none;
}

/* Closing Section */
.closing {
  padding: 100px 40px;
  text-align: center;
}

.closing p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}