/* General Styling */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #FFF8E1; /* light cream */
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #4CAF50; /* green */
  color: white;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links .active {
  border-bottom: 2px solid #FF9800; /* orange */
}

.btn {
  background: #FF9800;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e68900;
}

/* About Section */
.about {
  padding: 3rem 10%;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4CAF50;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}

.mission-box {
  background: #4CAF50;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.mission-box h3 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}

/* Image */
.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #4CAF50;
  color: white;
  margin-top: 2rem;
}
