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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  color: #2c5530;
}

h2 {
  font-size: 2rem;
  color: #2c5530;
}

h3 {
  font-size: 1.5rem;
  color: #2c5530;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Header and Navigation */
.navbar {
  background-color: #ffffff;
  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;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2c5530;
  background-color: #f0f8f0;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #2c5530;
}

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

/* Buttons */
.cta-button,
.submit-button {
  display: inline-block;
  background-color: #2c5530;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover,
.submit-button:hover {
  background-color: #1e3a21;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #2c5530;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #2c5530;
  transition: all 0.3s ease;
}

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

.read-more {
  color: #2c5530;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #1e3a21;
}

.read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* Sections */
section {
  padding: 4rem 0;
}

.guides {
  background-color: #fafafa;
}

.guides h2 {
  text-align: center;
  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: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

/* Benefits Section */
.benefits {
  background-color: white;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.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 {
  margin-bottom: 0.5rem;
  color: #2c5530;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
  color: white;
  text-align: center;
}

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

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

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

.cta-section .cta-button:hover {
  background-color: #f0f8f0;
  transform: translateY(-2px);
}

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

.reviews h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

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

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

.contact-form-section h2 {
  margin-bottom: 1rem;
}

.contact-form-section p {
  margin-bottom: 2rem;
  color: #666;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.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 select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

.footer-info h3 {
  color: white;
  margin-bottom: 1rem;
}

.slogan {
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

.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,
.footer-links a.active {
  opacity: 1;
}

/* Blog Styles */
.blog-header {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 3rem 0;
  text-align: center;
}

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

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

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

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

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

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

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

.blog-cta {
  background-color: #fafafa;
  text-align: center;
  padding: 3rem 0;
}

/* Blog Article Styles */
.blog-article {
  padding: 2rem 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.article-intro {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

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

.article-content section {
  margin-bottom: 2rem;
  padding: 0;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f5e8;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

/* Contact Page Styles */
.contact-header {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 3rem 0;
  text-align: center;
}

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

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

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

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

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

.contact-item p {
  color: #666;
  margin-bottom: 0;
}

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

.contact-additional {
  background-color: #fafafa;
  padding: 3rem 0;
}

.contact-additional h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.topic {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.topic p {
  color: #666;
  margin-bottom: 0;
}

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

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

.success-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.confirmation-details {
  background-color: #f0f8f0;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #2c5530;
}

.next-steps {
  margin: 3rem 0;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

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

.additional-resources {
  margin-top: 4rem;
}

.additional-resources h2 {
  margin-bottom: 1rem;
}

.additional-resources p {
  margin-bottom: 2rem;
  color: #666;
}

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

.resource-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
  margin-bottom: 0.5rem;
  color: #2c5530;
}

.resource-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* About Page Styles */
.about-header {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  padding: 3rem 0;
  text-align: center;
}

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

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

.about-text h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.values-list li:last-child {
  border-bottom: none;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

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

.feature p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-approach {
  background-color: #fafafa;
  padding: 3rem 0;
}

.about-approach h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.approach-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.approach-item h3 {
  margin-bottom: 1rem;
  color: #2c5530;
}

.approach-item p {
  color: #666;
  margin-bottom: 0;
}

.about-commitment {
  padding: 3rem 0;
}

.about-commitment .cta-section {
  background-color: #f0f8f0;
  color: #333;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.about-commitment .cta-section h3 {
  color: #2c5530;
}

/* Legal Pages Styles */
.legal-content {
  padding: 4rem 0;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-content section {
  margin-bottom: 2rem;
  padding: 0;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f5e8;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.important-notice {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.important-notice h2 {
  color: #856404;
  margin-bottom: 1rem;
  border-bottom: none;
  margin-top: 0;
}

.important-notice p {
  color: #856404;
  margin-bottom: 0;
}

.health-reminder {
  background-color: #f0f8f0;
  border: 2px solid #2c5530;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.health-reminder h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.health-reminder p {
  color: #2c5530;
  margin-bottom: 0;
}

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

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

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

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

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

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .help-topics {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
  }

  .card,
  .article-card,
  .review {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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