body {
  font-family: Arial, sans-serif;
  background-color: #f8fdf9;
}
.navbar {
  background-color: #004d26; /* Dark Green */
}
.navbar-brand img {
  height: 50px;
}
.hero {
  background-color: #eaf5ea;
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  color: #004d26;
  font-weight: bold;
}
.hero p {
  color: #333;
}
.btn-primary {
  background-color: #f7b500; /* Yellow from sun */
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #e0a200;
}
.section-title {
  color: #004d26;
  font-weight: bold;
  margin-bottom: 40px;
}

/* About & Mission */
    section {
      padding: 4rem 0;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
    }

    .section-subtitle {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 2rem;
      color: #4a4a4a;
    }
.footer {
  background-color: #004d26;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.auth-container {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .auth-card {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      max-width: 400px;
      width: 100%;
      text-align: center;
    }

    .logo {
      max-width: 180px;
      margin-bottom: 1.5rem;
    }

    .btn-primary {
      background-color: var(--primary-green);
      border: none;
    }

    .btn-primary:hover {
      background-color: #0b3f2c;
    }

    a {
      color: var(--primary-green);
      text-decoration: none;
      font-weight: 500;
    }

    a:hover {
      text-decoration: underline;
    }