/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.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.5rem;
  font-weight: 700;
  color: #2c5530;
  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: #2c5530;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

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

.hero h1 {
  font-size: 3rem;
  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 */
.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: #2c5530;
  color: white;
}

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

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

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

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

.tips-section h2,
.benefits-section h2,
.reviews-section h2,
.cta-block h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 3rem;
}

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

.tip-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;
}

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

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

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

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

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

.cta-block h2 {
  color: white;
}

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

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

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

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

.review-card {
  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-card p {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

.reviewer strong {
  color: #2c5530;
}

.reviewer span {
  color: #999;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.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: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  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;
}

/* Blog Styles */
.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: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-card h2 a {
  color: #2c5530;
  text-decoration: none;
  font-size: 1.3rem;
}

.blog-card h2 a:hover {
  text-decoration: underline;
}

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

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

/* Article Styles */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.article-content {
  line-height: 1.8;
}

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

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

.article-content ul,
.article-content ol {
  margin: 1rem 0 1rem 2rem;
}

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

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

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

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

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

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

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

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

/* Thank You Page */
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-details {
  background: #f0f8f0;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.step-number {
  background: #2c5530;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.while-you-wait,
.contact-reminder {
  background: #f8fffe;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

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

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content section {
  margin-bottom: 2rem;
}

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

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

.policy-content ul,
.policy-content ol {
  margin: 1rem 0 1rem 2rem;
}

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

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

/* CTA Sections */
.cta-section {
  background: #f0f8f0;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.page-intro {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.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-section ul {
  list-style: none;
}

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

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

.footer-section a:hover {
  color: #a8d5aa;
}

.slogan {
  font-style: italic;
  opacity: 0.9;
  line-height: 1.4;
}

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

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

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

  .next-steps {
    align-items: center;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

  .hero {
    padding: 2rem 0;
  }

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

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