/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(to right, #d9f2e6, #cfeaf5);
  color: #333;
  line-height: 1.8;
  font-size: 17px;
}

/* Header */
header {
  background: #ffffff;
  padding: 25px 40px;
  border-bottom: 3px solid #b3e0c5;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.15);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  max-width: 80px;
  height: auto;
  margin-right: 15px;
}

.header-container h1 {
  color: #2e8b57;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #2e8b57;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #1f5c3c;
  text-decoration: underline;
}

/* HERO Section */
.hero {
  background: linear-gradient(to right, #2e8b57, #38a084);
  color: white;
  padding: 80px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #ffffff;
  color: #2e8b57;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

/* Main Content */
main {
  padding: 40px 30px;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

main h2 {
  font-size: 28px;
  color: #2e8b57;
  margin-bottom: 15px;
}

main h3 {
  font-size: 22px;
  color: #1f5c3c;
  margin-top: 30px;
  margin-bottom: 10px;
}

main p,
main ul,
main blockquote {
  margin-bottom: 20px;
  font-size: 17px;
}

/* Lists */
ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "🌿";
  position: absolute;
  left: 0;
}

/* Quotes */
blockquote {
  font-style: italic;
  background-color: #f0fff4;
  border-left: 5px solid #2e8b57;
  color: #444;
  padding: 12px 20px;
  margin: 25px 0;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-top: 2px solid #b3e0c5;
  color: #666;
  margin-top: 50px;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 18px;
  }

  main {
    padding: 30px 20px;
  }

  nav a {
    display: inline-block;
    margin: 10px 8px;
  }
}
