body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #e3f9e5 0%, #e3f2fd 100%);
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.main-header {
  background: linear-gradient(90deg, #1e88e5 0%, #43a047 100%);
  color: #fff;
  padding: 24px 0 12px 0;
  border-bottom: none;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-left: 32px;
}
.header-title h1 {
  font-size: 2.2rem;
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}
.header-title .tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  color: #e3f9e5;
}
.main-nav {
  margin-top: 10px;
  text-align: left;
  padding-left: 32px;
}
.main-nav a {
  color: #fff;
  margin: 0 16px 0 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s, background 0.3s, border-radius 0.3s;
  padding: 7px 18px;
  border-radius: 8px;
  background: rgba(67,160,71,0.15);
}
.main-nav a:hover {
  background: #e3f9e5;
  color: #1e88e5;
}
/* Footer */
/* Footer */
.main-footer {
  background: linear-gradient(90deg, #43a047 0%, #1e88e5 100%);
  color: #fff;
  border-top: none;
  margin-top: 0;
  padding: 40px 0 16px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  max-width: 100vw;
  margin: 0 auto 16px auto;
}
.footer-section h3, .footer-section h4 {
  color: #e3f9e5;
  margin-bottom: 10px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 6px;
}
.footer-section a {
  color: #e3f2fd;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #e3f9e5;
  margin-top: 12px;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  background: url('../images/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.banner-image {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,85,48,0.65);
  z-index: 1;
}
.banner-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}
.banner-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.cta-btn {
  display: inline-block;
  background: #1e88e5;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.cta-btn:hover {
  background: #2c5530;
  color: #fff;
  box-shadow: 0 4px 16px rgba(44,85,48,0.12);
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #e3f9e5 0%, #e3f2fd 100%);
  border-radius: 0;
  padding: 48px 0;
  margin-bottom: 0;
}
.services-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: linear-gradient(120deg, #e3f2fd 0%, #43a047 100%);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(30,136,229,0.13);
  padding: 40px 28px;
  width: 360px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(44,85,48,0.18);
  transform: translateY(-8px) scale(1.04);
}
.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card h3 {
  color: #1e88e5;
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.service-card ul {
  padding-left: 18px;
  color: #222;
  font-size: 1.08rem;
}

/* Section Box */
.section-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,85,48,0.07);
  padding: 32px 24px;
  margin-bottom: 32px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
    padding: 0 8px;
  }
  .header-content {
    flex-direction: column;
    gap: 8px;
  }
}
.contact-form {
  max-width: 400px;
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f6f8fa;
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,85,48,0.07);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-weight: 600;
  color: #2c5530;
}
.contact-form input,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #4CAF50;
  border-color: #4CAF50;
}
.contact-form button {
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #2c5530;
}
.contact-details {
  margin-top: 16px;
  text-align: center;
  font-size: 1.08rem;
}
.contact-details a {
  color: #2980b9;
  text-decoration: none;
}
.contact-details a:hover {
  text-decoration: underline;
}
.about-section {
  background: #e9f5ee;
  border-left: 8px solid #4CAF50;
}
.services-section {
  background: #f6f8fa;
  border-left: 8px solid #2980b9;
}
.approach-section {
  background: #f0f4ff;
  border-left: 8px solid #2c5530;
}
.values-section {
  background: #fffbe6;
  border-left: 8px solid #f1c40f;
}
.contact-section {
  background: #e9f5ee;
  border-left: 8px solid #4CAF50;
}
.section-box h2 {
  color: #2c5530;
  margin-bottom: 18px;
}
.service-card h3 {
  color: #2980b9;
}
.mission-card h3 {
  color: #4CAF50;
}
.vision-card h3 {
  color: #2c5530;
}
.values-list li {
  background: #fffbe6;
  border-left: 3px solid #f1c40f;
}
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 260px;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,85,48,0.08);
}
.banner-image {
  width: 100%;
  height: 260px;
  background: url('../images/banner.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-text {
  background: rgba(44,85,48,0.75);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44,85,48,0.13);
  max-width: 90%;
}
@media (max-width: 700px) {
  .hero-banner, .banner-image {
    min-height: 140px;
    height: 140px;
  }
  .banner-text {
    font-size: 1rem;
    padding: 16px 8px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 8px 2px;
  }
  header h1 {
    font-size: 1.5rem;
  }
  header h2 {
    font-size: 1rem;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .main-image {
    max-width: 100%;
    height: auto;
  }
  .section-box {
    padding: 16px 6px;
  }
  .mission-vision-grid, .services-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-card, .mission-card, .vision-card {
    min-width: 0;
    padding: 12px 8px;
  }
  .values-list li {
    font-size: 1rem;
    padding-left: 4px;
  }
  .approach-list {
    font-size: 1rem;
    padding-left: 10px;
  }
}
@media (max-width: 500px) {
  header h1 {
    font-size: 1.1rem;
  }
  .logo {
    width: 80px;
  }
  .section-box {
    padding: 8px 2px;
  }
  h2 {
    font-size: 1.1rem;
  }
  h3 {
    font-size: 1rem;
  }
  .main-image {
    max-width: 100%;
    height: auto;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.section-box, .mission-card, .vision-card, .service-card {
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover, .mission-card:hover, .vision-card:hover {
  box-shadow: 0 6px 24px rgba(44,85,48,0.13);
  transform: translateY(-6px) scale(1.03);
}
header nav a {
  transition: color 0.3s, background 0.3s, border-radius 0.3s;
}
header nav a:hover {
  background: #e9f5ee;
  border-radius: 6px;
}
.values-list li {
  transition: box-shadow 0.3s, border-left 0.3s;
}
.values-list li:hover {
  box-shadow: 0 2px 8px rgba(44,85,48,0.13);
  border-left: 6px solid #2c5530;
}
.main-image {
  transition: box-shadow 0.3s, transform 0.3s;
}
.main-image:hover {
  box-shadow: 0 8px 32px rgba(44,85,48,0.13);
  transform: scale(1.04);
}
.btn, button, input[type="submit"] {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn:hover, button:hover, input[type="submit"]:hover {
  background: #2c5530;
  color: #fff;
  box-shadow: 0 2px 8px rgba(44,85,48,0.13);
}
.section-box {
  background: #f6f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,85,48,0.07);
  padding: 32px 24px;
  margin-bottom: 32px;
}
.about-section {
  border-left: 8px solid #4CAF50;
}
.mission-vision-section {
  background: #e9f5ee;
}
.mission-vision-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 16px;
}
.mission-card, .vision-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,85,48,0.06);
  padding: 24px 16px;
  flex: 1;
}
.mission-card h3, .vision-card h3 {
  color: #2c5530;
  margin-bottom: 12px;
}
.values-section {
  background: #f6f8fa;
}
.values-list {
  margin: 0;
  padding-left: 20px;
  text-align: left;
  font-size: 1.08rem;
}
.values-list li {
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #4CAF50;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(44,85,48,0.04);
}
@media (max-width: 700px) {
  .mission-vision-grid {
    flex-direction: column;
    gap: 16px;
  }
  .section-box {
    padding: 16px 8px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f8fa;
  color: #222;
}
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
}
.logo {
  width: 120px;
  margin-bottom: 16px;
}
header {
  text-align: center;
  margin-bottom: 24px;
}
header h1 {
  font-size: 2.2rem;
  margin: 0 0 8px 0;
  color: #2c5530;
}
header h2 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 24px 0;
  color: #4CAF50;
}
header nav {
  margin-bottom: 16px;
}
header nav a {
  margin: 0 12px;
  color: #2c5530;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
header nav a:hover {
  color: #4CAF50;
}
.hero {
  text-align: center;
  margin-bottom: 32px;
}
.main-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin: 0 auto 24px auto;
  display: block;
}
.hero-text {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 16px;
}
section {
  margin-bottom: 32px;
}
.mission-vision {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 16px;
}
.mission-vision > div {
  background: #f6f8fa;
  border-radius: 8px;
  padding: 16px;
  flex: 1;
}
.services-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.service-card {
  background: #f6f8fa;
  border-radius: 8px;
  padding: 16px;
  flex: 1 1 300px;
  min-width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card h3 {
  color: #2c5530;
  margin-bottom: 8px;
}
.service-card ul {
  text-align: left;
  margin: 0;
  padding-left: 20px;
}
.approach-list {
  margin: 0;
  padding-left: 20px;
  text-align: left;
}
.values-list {
  margin: 0;
  padding-left: 20px;
  text-align: left;
}
.contact {
  background: #f6f8fa;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
footer {
  margin-top: 32px;
  font-size: 0.95rem;
  color: #888;
  text-align: center;
}
@media (max-width: 700px) {
  .container {
    padding: 12px 4px;
  }
  .mission-vision, .services-grid {
    flex-direction: column;
    gap: 16px;
  }
}
