* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  /* background-color: #ffffff; */
  background-color: #eaeaea
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

header .container{
  display: flex;
  justify-content: space-between;
}

header h1 {
  font-size: 28px;
  color: #008000;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #333;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #008000;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0;
  /* background: linear-gradient(to right, #e0ffe0, #ffffff); */
  background: url(./images/banner-1.webp);
  background-size: 100% 100%;
  
  height: 70vh;
}

.hero h2 {
   color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
   color: white;
  margin-bottom: 30px;
}

.btn {
  background-color: #008000;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #006600;
}





/* Stats */

/* Section Base */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0077cc;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-card {
  background: #fff;
  padding: 25px;
  border-left: 5px solid #006600;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  flex: 1 1 250px;
}





/* News Section */
.news {
  background-color: #ffffff;
  padding: 60px 0;
}

.news h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #008000;
}

.news ul {
  list-style-type: disc;
  padding-left: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
  color: #008000;
}

/* Footer */
footer {
  background-color: #eaeaea;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

footer p {
  color: #555;
}
