/* Reset and Base Styles */
* {
  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: #f8f9fa;
}

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

/* Header and Navigation */
.header {
  background-color: #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 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d5a27;
  text-decoration: none;
}

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

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

.nav-menu a:hover {
  color: #2d5a27;
}

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

.hero h1 {
  font-size: 2.5rem;
  color: #2d5a27;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.btn-secondary {
  background-color: #fff;
  color: #2d5a27;
  border: 2px solid #2d5a27;
}

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

/* Sections */
.guides,
.benefits,
.reviews,
.cta-section,
.contact-form-section {
  padding: 4rem 0;
}

.guides h2,
.benefits h2,
.reviews h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2d5a27;
  margin-bottom: 3rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

/* Reviews */
.reviews {
  background-color: #f8f9fa;
}

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

.review {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.review cite {
  color: #2d5a27;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background-color: #2d5a27;
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-form-section {
  background-color: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  color: #4a7c59;
  margin-bottom: 0.5rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

.contact-info {
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4a7c59;
}

/* Main Content Pages */
.main-content {
  padding: 2rem 0;
  min-height: 60vh;
}

.main-content h1 {
  color: #2d5a27;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

/* Blog Styles */
.blog-intro {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-card h2 {
  color: #2d5a27;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.date,
.category {
  background-color: #f0f8f0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #2d5a27;
}

/* Article Styles */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content h1 {
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.article-intro {
  font-size: 1.2rem;
  color: #555;
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-left: 4px solid #2d5a27;
}

.article-content h2 {
  color: #2d5a27;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.article-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.article-cta {
  background-color: #f0f8f0;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  color: #2d5a27;
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  color: #2d5a27;
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.confirmation-message {
  font-size: 1.2rem;
  color: #2d5a27;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f0f8f0;
  border-radius: 6px;
}

.thank-you-info {
  margin: 2rem 0;
  text-align: left;
}

.thank-you-info h2 {
  color: #2d5a27;
  margin-bottom: 1rem;
}

.thank-you-info ul {
  padding-left: 1.5rem;
}

.thank-you-info li {
  margin-bottom: 0.5rem;
  color: #555;
}

.next-steps {
  margin-top: 2rem;
}

.next-steps h3 {
  color: #2d5a27;
  margin-bottom: 1rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Policy Pages */
.policy-section {
  margin-bottom: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
  color: #2d5a27;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.policy-section h3 {
  color: #2d5a27;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* About Page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.value-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
  color: #2d5a27;
  margin-bottom: 1rem;
}

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

  .nav-menu {
    gap: 1rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .article-content {
    padding: 2rem 1rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .guides,
  .benefits,
  .reviews,
  .cta-section,
  .contact-form-section {
    padding: 2rem 0;
  }

  .card,
  .article-content,
  .thank-you-content {
    padding: 1.5rem;
  }
}
