/* 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;
}

/* Navigation */
.navbar {
  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;
}

.nav-logo {
  text-decoration: none;
}

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

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

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

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

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

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

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

/* Buttons */
.cta-button {
  display: inline-block;
  background: #2c5530;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #1e3a21;
}

.cta-button.secondary {
  background: #6c757d;
  margin-left: 1rem;
}

.cta-button.secondary:hover {
  background: #545b62;
}

/* Guide Cards */
.guides {
  padding: 4rem 0;
  background: white;
}

.guides h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 3rem;
}

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

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

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

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

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

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

.card-link {
  color: #2c5530;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

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

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 3rem;
}

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

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

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

.cta-section .cta-button:hover {
  background: #f8f9fa;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  background: white;
}

.reviews h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 3rem;
}

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

.review {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

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

.review p {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

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

.contact-form-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.submit-button {
  width: 100%;
  background: #2c5530;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #1e3a21;
}

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

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

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-info p {
  opacity: 0.9;
  line-height: 1.6;
}

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

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

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

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

/* Blog Styles */
.blog-header {
  background: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
}

.blog-header h1 {
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.blog-articles {
  padding: 4rem 0;
  background: white;
}

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

.article-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.article-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: #2c5530;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.read-more:hover {
  border-color: #2c5530;
}

.blog-cta {
  text-align: center;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
}

.blog-cta h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

/* Article Styles */
.blog-article {
  padding: 3rem 0;
  background: white;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.article-intro {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #444;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

/* Contact Page Styles */
.contact-hero {
  background: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.contact-content {
  padding: 4rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container h2 {
  color: #2c5530;
  margin-bottom: 2rem;
}

.contact-info h2 {
  color: #2c5530;
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 2rem;
}

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

.info-item p {
  color: #666;
  line-height: 1.6;
}

/* Thank You Page */
.thank-you-section {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 2rem;
}

.thank-you-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: left;
}

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

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

.thank-you-info li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.thank-you-actions {
  margin-top: 2rem;
}

/* About Page */
.about-hero {
  background: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 1rem;
}

.about-content {
  padding: 4rem 0;
  background: white;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #2c5530;
  margin: 2rem 0 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #444;
}

.about-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.about-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.value-item h3 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.about-cta {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 3rem;
}

.about-cta h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

/* Policy Pages */
.policy-content {
  padding: 4rem 0;
  background: white;
}

.policy-content .container {
  max-width: 800px;
}

.policy-content h1 {
  font-size: 2.2rem;
  color: #2c5530;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.6rem;
  color: #2c5530;
  margin: 2rem 0 1rem;
}

.policy-content h3 {
  font-size: 1.3rem;
  color: #2c5530;
  margin: 1.5rem 0 0.5rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #444;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-cta {
  text-align: center;
  margin-top: 3rem;
}

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

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

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

  .guide-cards {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

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

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-actions .cta-button.secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 15px;
  }

  .hero {
    padding: 2rem 0;
  }

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

  .card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
