* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(to right, #2e7d32, #ca7526);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #d4e157;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1534187886935-1e1236e856c3?ixlib=rb-4.0.3")
      no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background: #ca7526;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #2e7d32;
  transform: translateY(-3px);
}

/* Feature Sections with alternating layout */
.feature-section {
  padding: 80px 0;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.feature-text {
  flex: 1;
}

.feature-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  height: 600px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  transition: transform 0.3s ease;

}

.feature-image:hover {
  transform: scale(1.02);
}

.feature-image img {
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.reverse {
  flex-direction: row-reverse;
}

.feature-text h2 {
  font-size: 2.2rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

.feature-icon {
  font-size: 2.5rem;
  color: #ca7526;
  margin-bottom: 20px;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, #2e7d32, #ca7526);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #263238;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: #b0bec5;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ca7526;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #37474f;
  color: #b0bec5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .feature-content {
    flex-direction: column;
  }

  .reverse {
    flex-direction: column;
  }

  .feature-text,
  .feature-image {
    width: 100%;
  }
}
