/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #2a7f62;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo h1 {
  font-size: 1.8rem;
}

header nav ul {
  list-style-type: none;
  display: flex;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  background: #6dbb8e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-section .btn {
  padding: 10px 20px;
  background-color: #f1c40f;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
}

.hero-section .btn:hover {
  background-color: #f39c12;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  header {
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }

  header .logo h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  header nav ul {
    display: block;
    margin-top: 10px;
  }

  header nav ul li {
    display: block;
    margin: 5px 0;
  }

  header nav ul li a {
    font-size: 1.1rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-section .btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  header .logo h1 {
    font-size: 1.3rem;
  }

  header nav ul li a {
    font-size: 1rem;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 0.9rem;
  }

  .hero-section .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
