/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

h1, h2, h3 {
  color: #2c5f2d;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.8em;
  text-align: center;
  margin-top: 0;
}

h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #2c5f2d;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #70ad47;
}

.btn {
  display: inline-block;
  background-color: #70ad47;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #2c5f2d;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #2c5f2d;
}

.btn-secondary:hover {
  background-color: #70ad47;
}

/* Header */
header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #2c5f2d;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: bold;
  font-size: 1.1em;
}

/* Hero Section */
.hero {
  background-color: #e8f5e9;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3.5em;
  color: #2c5f2d;
}

.hero p {
  font-size: 1.3em;
  color: #555;
  margin-bottom: 40px;
}

/* Section Styling */
.section {
  padding: 60px 0;
}

.section h2 {
  margin-bottom: 40px;
}

.section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-top: 0;
  color: #2c5f2d;
}

/* Value Proposition Section */
.value-prop {
  background-color: #f1f8e9;
}

.value-prop .section-content {
  grid-template-columns: repeat(3, 1fr);
}

.value-prop .card {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.value-prop .card:hover {
  transform: none;
  box-shadow: none;
}

.value-prop .card i {
  font-size: 3em;
  color: #70ad47;
  margin-bottom: 15px;
}

/* Pricing Section */
.pricing-plans {
  background-color: #fff;
}

.pricing-plan {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pricing-plan h3 {
  color: #2c5f2d;
  margin-bottom: 15px;
}

.pricing-plan .price {
  font-size: 2.5em;
  font-weight: bold;
  color: #2c5f2d;
  margin-bottom: 20px;
}

.pricing-plan .price span {
  font-size: 0.7em;
  font-weight: normal;
  color: #555;
}

.pricing-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-plan ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.pricing-plan ul li::before {
  content: '\2713'; /* Checkmark */
  color: #70ad47;
  position: absolute;
  left: 0;
  top: 0;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image-placeholder {
  flex: 1;
  background-color: #ccc;
  height: 400px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  font-size: 1.2em;
}

/* Contact Section */
.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
  width: calc(100% - 20px);
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
}

.contact-info {
  margin-top: 30px;
  text-align: center;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
}

footer p {
  margin: 0;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .site-header {
    flex-direction: column;
  }

  nav ul {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 15px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.8em;
  }

  .hero h1 {
    font-size: 2.8em;
  }

  .hero p {
    font-size: 1.1em;
  }

  .section-content {
    grid-template-columns: 1fr;
  }

  .value-prop .section-content {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image-placeholder {
    height: 300px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .hero h1 {
    font-size: 2.2em;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9em;
  }
}