:root {
  --light-green: #f0f9f0;
  --primary-green: #c5e8c6;
  --accent-green: #66bb6a;
  --dark-green: #2e7d32;
  --deep-green: #1b5e20;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --text-dark: #212529;
  --text-medium: #495057;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--light-green);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-green);
  background: linear-gradient(to right, var(--dark-green), var(--accent-green));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--dark-green);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-green);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--dark-green), var(--deep-green));
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.secondary-button {
  background: var(--white);
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
}

.secondary-button:hover {
  background: var(--dark-green);
  color: white;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--primary-green) 100%
  );
  position: relative;
  overflow: hidden;
  background-blend-mode: multiply;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(101, 187, 106, 0.1);
  z-index: 0;
}

.hero::before {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
}

.hero::after {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--dark-green);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Stats */
.stat-item {
  background: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Features */
.feature-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--medium-gray);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-green);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light-green), var(--primary-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark-green);
  font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: #f8faf8;
  position: relative;
}

.steps {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.step {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.08);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e0f2e0;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.15);
  border-color: var(--accent-green);
}

.step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dark-green), var(--deep-green));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(101, 187, 106, 0.2);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -30px;
  width: 30px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent-green),
    var(--primary-green)
  );
  z-index: 1;
}

.step:last-child .step-connector {
  display: none;
}

@media (max-width: 992px) {
  .steps {
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 45%;
    margin-bottom: 30px;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 576px) {
  .step {
    flex: 1 1 100%;
  }
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.hover-white:hover {
  color: white !important;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}
.list-unstyled {
  color: rgb(231, 231, 231);
  font-size: 13.5px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--accent-green);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .step {
    padding: 20px;
  }
}
