* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c5530;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2c5530;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  padding: 4rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  font-size: 8rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #2c5530;
  color: white;
}

.btn-primary:hover {
  background: #1e3a21;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f0f8f0;
  color: #2c5530;
  border: 2px solid #2c5530;
}

.btn-secondary:hover {
  background: #2c5530;
  color: white;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c5530;
  font-weight: 700;
}

.guides {
  padding: 4rem 0;
  background: #fff;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: #f8fffe;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8f5e8;
  transition: transform 0.3s;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guide-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c5530;
}

.guide-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Benefits */
.benefits {
  padding: 4rem 0;
  background: #f8fffe;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2c5530;
}

.benefit-item p {
  color: #666;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: #2c5530;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: white;
  color: #2c5530;
}

.cta-section .btn-primary:hover {
  background: #f0f8f0;
}

/* Reviews */
.reviews {
  padding: 4rem 0;
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #f8fffe;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2c5530;
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.review-author {
  font-weight: 600;
  color: #2c5530;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
  background: #f8fffe;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c5530;
}

.form-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c5530;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e8f5e8;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #2c5530;
}

/* Footer */
.footer {
  background: #1e3a21;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #a8d5aa;
}

.footer-slogan {
  font-style: italic;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .guides-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
