/*home*/
.home-intro {
  padding: 40px 0 20px;
}

.home-intro-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.home-intro-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 34px 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  height: 100%;
}

.home-intro-content h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 22px;
  color: #111111;
}

.home-intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 18px;
}

.home-intro-content a {
  color: #0f5d35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.home-cta-box {
  flex: 1 1 260px;
  background: #f8f9f8;
  border: 1px solid #e6ebe8;
  border-radius: 12px;
  padding: 18px;
}

.home-cta-label {
  display: block;
  font-size: 15px;
  color: #666666;
  margin-bottom: 10px;
}

.home-cta-btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.home-cta-btn-solid {
  background: #0f5d35;
  color: #ffffff !important;
  border: 1px solid #0f5d35;
}

.home-cta-btn-solid:hover {
  background: #0b4c2b;
  border-color: #0b4c2b;
}

.home-cta-btn-outline {
  background: #ffffff;
  color: #0f5d35 !important;
  border: 1px solid #0f5d35;
}

.home-cta-btn-outline:hover {
  background: #f1f7f3;
}

.home-usp-box {
  background: #f6f8f7;
  border: 1px solid #e3e8e5;
  border-radius: 14px;
  padding: 28px 28px 18px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.homecheck {
  list-style: none;
  margin: 0;
  padding: 0;
}

.homecheck li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #2f2f2f;
}

.homecheck li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f5d35;
  color: #ffffff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  font-weight: 700;
}

.home-subsection {
  margin-top: 34px;
  background: #ffffff;
  border-radius: 14px;
  padding: 6px 4px 0;
}

.home-subsection h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #111111;
  padding-top: 0 !important;
}

.home-subsection p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

.home-review {
  margin: 26px 0 0;
  padding: 24px 28px;
  background: #f8f9f8;
  border-left: 4px solid #0f5d35;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.8;
  color: #2f2f2f;
}

.home-review em {
  font-style: italic;
}

@media (max-width: 991px) {
  .home-intro-content,
  .home-usp-box {
    height: auto;
  }

  .home-intro-content h1 {
    font-size: 30px;
  }

  .home-subsection h2 {
    font-size: 26px;
  }

  .home-intro-content p,
  .home-subsection p,
  .homecheck li,
  .home-review {
    font-size: 16px;
  }

  .home-intro {
    padding: 24px 0 10px;
  }
}