body {
  font-family: "Open Sans", sans-serif;
  background-color: #ffffff;
  color: #263238;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.navbar {
  padding: 1rem 2rem;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 47px;
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}
.navbar-brand span {
  color: #1a6b2d;
  font-weight: 700;
  font-size: 1.4rem;
  margin-left: 0.75rem;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: #263238;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
  font-size: 0.95rem;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1a6b2d;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  width: 100%;
}

.btn-primary-custom {
  background-color: #1a6b2d;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid #1a6b2d;
  box-shadow: 0 4px 12px rgba(26, 107, 45, 0.2);
}
.btn-primary-custom:hover {
  background-color: #145724;
  border-color: #145724;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 107, 45, 0.3);
}

.btn-outline-custom {
  background-color: transparent;
  color: #1a6b2d;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid #1a6b2d;
}
.btn-outline-custom:hover {
  background-color: #1a6b2d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 107, 45, 0.3);
}

.hero {
  background: linear-gradient(135deg, rgba(26, 107, 45, 0.9) 0%, rgba(21, 87, 36, 0.95) 100%), url("https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80") center/cover no-repeat;
  color: white;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-weight: 700;
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero p.lead {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  opacity: 0.9;
}
.hero .hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  min-width: 160px;
  font-size: 1.05rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
}
.hero .hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  border: 8px solid white;
}
.hero .hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}
.hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.stats-section {
  background-color: white;
  padding: 2rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.stats-section .stat-item {
  text-align: center;
  padding: 1.5rem;
}
.stats-section .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a6b2d;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}
.stats-section .stat-label {
  color: #607d8b;
  font-weight: 600;
  font-size: 0.95rem;
}

.section {
  padding: 6rem 0;
}
.section .section-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a6b2d;
  position: relative;
  text-align: center;
}
.section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #f9a825;
  border-radius: 2px;
}
.section .section-subtitle {
  color: #607d8b;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-section .row.align-items-center {
  align-items: stretch;
}
.about-section .about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .about-section .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
.about-section .about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-height: 500px;
}
.about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 1200px) {
  .about-section .about-image img {
    min-height: 350px;
  }
}
@media (max-width: 992px) {
  .about-section .about-image img {
    min-height: 300px;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .about-section .about-image img {
    min-height: 250px;
    max-height: 350px;
  }
}
.about-section .about-image:hover img {
  transform: scale(1.03);
}
.about-section .about-features .about-feature-item {
  margin-bottom: 1.75rem;
}

.features-section {
  background-color: #f5f7fa;
}
.features-section .feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.features-section .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #1a6b2d;
  transition: height 0.3s ease;
}
.features-section .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.features-section .feature-card:hover::before {
  height: 100%;
}
.features-section .feature-card:hover .feature-icon {
  transform: scale(1.1);
}
.features-section .feature-card .feature-icon {
  font-size: 2.5rem;
  color: #1a6b2d;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.features-section .feature-card .feature-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #263238;
}
.features-section .feature-card .feature-text {
  color: #607d8b;
  font-size: 0.95rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 1rem;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: #e8f5e9;
  font-family: serif;
  line-height: 1;
  z-index: 0;
}
.testimonial-card .testimonial {
  font-style: italic;
  color: #263238;
  margin-bottom: 1.5rem;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-card .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}
.testimonial-card .testimonial-author .author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimonial-card .testimonial-author .author-title {
  color: #607d8b;
  font-size: 0.85rem;
}

.cta-section {
  background: linear-gradient(135deg, #1a6b2d 0%, #145724 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta-section .cta-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
.cta-section .cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
}
.cta-section .cta-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  min-width: 180px;
  font-size: 1.05rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
}
.cta-section .btn-light-custom {
  background-color: white;
  color: #1a6b2d;
  border: 2px solid white;
}
.cta-section .btn-light-custom:hover {
  background-color: transparent;
  color: white;
}

.footer {
  background-color: #263238;
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  width: 100%;
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer .footer-logo img {
  height: 60px;
}
.footer .footer-logo span {
  font-weight: 700;
  font-size: 1.4rem;
  margin-left: 0.75rem;
  color: white;
}
.footer .footer-about {
  margin-bottom: 2rem;
}
.footer .footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer .footer-links h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
  text-align: right;
}
.footer .footer-links h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background-color: #f9a825;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  text-align: right !important;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.footer .footer-links a:hover {
  color: white;
}
.footer .footer-social {
  display: flex;
  margin-top: 1.5rem;
}
.footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
.footer .footer-social a:hover {
  background-color: #1a6b2d;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p.lead {
    font-size: 1.15rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .stats-section {
    margin-top: 0;
  }
  .stat-item {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .hero {
    padding: 80px 0 60px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .section {
    padding: 3rem 0;
  }
}
