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

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

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

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c5530;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.nav-menu {
  display: flex;
}

.nav-list {
  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 {
  color: #2c5530;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gradient-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(44, 85, 48, 0.1), rgba(76, 175, 80, 0.1));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-icons {
  position: absolute;
  top: 20%;
  right: 10%;
}

.floating-icons > div {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.icon-leaf {
  top: 0;
  left: 0;
  animation-delay: 0s;
}
.icon-heart {
  top: 50px;
  left: 30px;
  animation-delay: 1s;
}
.icon-sun {
  top: 100px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

.btn-primary:hover {
  background: #1e3a21;
  border-color: #1e3a21;
}

.btn-outline {
  background: transparent;
  color: #2c5530;
  border-color: #2c5530;
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

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

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

.page-header {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Tips Section */
.tips-section {
  padding: 4rem 0;
  background: #fff;
}

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

.tip-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.cta-section .btn-outline {
  color: white;
  border-color: white;
}

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

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

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

/* Testimonials */
.testimonials-section {
  padding: 4rem 0;
  background: #fff;
}

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

.testimonial-card {
  background: #f8fffe;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

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

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

.testimonial-author strong {
  color: #2c5530;
  display: block;
  margin-bottom: 0.25rem;
}

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

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

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

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

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

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  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 textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c5530;
}

/* Blog Styles */
.blog-listing {
  padding: 4rem 0;
}

.articles-grid {
  display: grid;
  gap: 2rem;
}

.article-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.article-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

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

.article-content h2 a {
  color: #2c5530;
  text-decoration: none;
  font-size: 1.5rem;
}

.article-content h2 a:hover {
  color: #1e3a21;
}

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

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.read-time {
  color: #999;
  font-size: 0.9rem;
}

.read-more {
  color: #2c5530;
  text-decoration: none;
  font-weight: 600;
}

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

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

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

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #2c5530;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.category {
  background: #e8f5e8;
  color: #2c5530;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.article-content .lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 500;
}

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

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

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

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

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

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

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

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

/* Contact Page */
.contact-section {
  padding: 4rem 0;
}

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

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

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

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

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

.contact-item a {
  color: #2c5530;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.personalized-message {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.message-summary {
  background: #f8fffe;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: left;
}

.message-summary h2 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.summary-details p {
  margin-bottom: 0.5rem;
  color: #666;
}

.next-steps,
.thank-you-actions {
  margin: 2rem 0;
}

.next-steps h2,
.thank-you-actions h2 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.next-steps ul {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.next-steps li {
  margin-bottom: 0.5rem;
  color: #666;
}

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

.contact-reminder {
  background: #e8f5e8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-reminder p {
  margin-bottom: 0.5rem;
  color: #666;
}

.contact-reminder a {
  color: #2c5530;
  text-decoration: none;
}

.contact-reminder a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-page {
  padding: 2rem 0 4rem 0;
}

.legal-page h1 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

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

.legal-content p {
  margin-bottom: 1rem;
  color: #444;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #444;
}

.disclaimer-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 600;
  color: #856404;
}

.contact-info {
  background: #f8fffe;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.25rem;
}

.contact-info a {
  color: #2c5530;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* About Page */
.about-content {
  padding: 4rem 0;
}

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

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

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

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

.about-text li {
  color: #666;
  margin-bottom: 0.5rem;
}

.about-values h2 {
  color: #2c5530;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

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

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

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

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

.about-cta p {
  color: #666;
  margin-bottom: 2rem;
}

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

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

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

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

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

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

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

.contact-info a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.contact-info a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

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

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

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

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

  .article-meta {
    justify-content: center;
  }

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

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

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

  .hero-section {
    padding: 2rem 0;
  }

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

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

  .tip-card,
  .testimonial-card,
  .contact-form,
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .article-content h1 {
    font-size: 2rem;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }
}
