:root {
  --primary-green: #328E6E;
  --light-green: #67AE6E;
  --accent-green: #FFC107;
  --pale-green: #90C67C;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --text-dark: #2c3e50;
  --border-light: #e9ecef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 120px;
  height: 50px;
  background: var(--white);
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-green);
  font-size: 24px;
}

.header-text h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.header-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background-image: url("img/hero.png");
  /* background: linear-gradient(rgba(71, 146, 20, 0.8), rgba(140, 243, 171, 0.8)),
    url("/placeholder.svg?height=600&width=1200") center / cover; */
  color: var(--white);
  padding: 100px 0;
  text-align: left;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 600px;
  /* margin-left: auto;
  margin-right: auto; */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: var(--accent-green);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #E1EEBC;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-green);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: var(--text-dark);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-green);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* CEO Message */
.ceo-message {
  background: var(--white);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ceo-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 5px solid var(--light-green);
}

.ceo-message blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-dark);
}

.ceo-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.ceo-title {
  font-size: 1rem;
  color: var(--light-green);
}

/* Helpline Section */
.helpline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.helpline-image img {
  max-width: 100%;
  /* border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.helpline-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-green);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-green);
}

.contact-details p {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about-content,
  .helpline-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .ceo-message {
    padding: 40px 30px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .ceo-message {
    padding: 30px 20px;
  }
}