/* 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 */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  text-decoration: none;
  color: #2c5530;
  font-size: 1.5rem;
  font-weight: bold;
}

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

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

.main-nav a:hover {
  color: #2c5530;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  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 h1 {
  font-size: 3rem;
  color: #2c5530;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

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

.cta-button.secondary {
  background: transparent;
  color: #2c5530;
  border: 2px solid #2c5530;
}

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

/* Hero Visual Elements */
.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.gradient-circle {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #2c5530, #4a7c59);
  border-radius: 50%;
  opacity: 0.1;
}

.floating-icons {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

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

.floating-icons .leaf {
  top: 30%;
  right: 20%;
  animation-delay: 0s;
}

.floating-icons .heart {
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}

.floating-icons .star {
  top: 45%;
  right: 15%;
  animation-delay: 4s;
}

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

/* Articles Preview Section */
.articles-preview {
  padding: 4rem 0;
  background: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-buttons .cta-button.primary:hover {
  background: #f0f0f0;
}

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

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

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

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.testimonial {
  background: #f8fffe;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #2c5530;
}

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

.testimonial p {
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.author {
  color: #666;
  font-weight: 600;
}

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

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

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

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  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;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

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

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

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

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

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

.footer-section p {
  line-height: 1.7;
  opacity: 0.9;
}

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

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

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

/* Blog Page Styles */
.blog-page {
  padding: 2rem 0 4rem;
}

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

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

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

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

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

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

.blog-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-icon {
  font-size: 2rem;
}

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

.blog-card h2 {
  margin-bottom: 1rem;
}

.blog-card h2 a {
  color: #2c5530;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h2 a:hover {
  color: #1e3a21;
}

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

/* Article Page Styles */
.article-page {
  padding: 2rem 0 4rem;
}

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

.breadcrumb {
  margin-bottom: 2rem;
  color: #666;
}

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

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

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

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

.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #666;
}

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

.reading-time {
  font-size: 0.9rem;
}

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

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

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

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

.article-body p {
  margin-bottom: 1.5rem;
  color: #333;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #333;
}

.routine-schedule {
  background: #f8fffe;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.routine-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.routine-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.routine-item strong {
  color: #2c5530;
  min-width: 100px;
  font-weight: 600;
}

.routine-item p {
  margin: 0;
  flex: 1;
}

.article-cta {
  background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  margin-bottom: 1rem;
  color: white;
}

.article-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

.article-cta .cta-button:hover {
  background: #f0f0f0;
}

/* Contact Page Styles */
.contact-page {
  padding: 2rem 0 4rem;
}

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

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

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

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

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

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

.contact-form-container > p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

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

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

.thank-you-content .lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

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

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

.summary-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item strong {
  color: #2c5530;
}

.next-steps {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps h2 {
  color: #2c5530;
  margin-bottom: 1rem;
  text-align: center;
}

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

.next-steps li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 2rem;
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5530;
  font-weight: bold;
}

.next-steps li:last-child {
  border-bottom: none;
}

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

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

/* About Page Styles */
.about-page {
  padding: 2rem 0 4rem;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

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

.about-intro .lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.about-values {
  margin-bottom: 4rem;
}

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

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

.value-item {
  text-align: center;
  padding: 2rem;
  background: #f8fffe;
  border-radius: 15px;
}

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

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

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

.about-approach {
  margin-bottom: 4rem;
}

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

.approach-content p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.approach-content ul {
  padding-left: 0;
  list-style: none;
}

.approach-content li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8fffe;
  border-radius: 10px;
  border-left: 4px solid #2c5530;
}

.approach-content li strong {
  color: #2c5530;
}

.about-commitment {
  margin-bottom: 4rem;
}

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

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

.commitment-item {
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.commitment-item p {
  color: #666;
  line-height: 1.7;
}

.about-disclaimer {
  margin-bottom: 4rem;
}

.disclaimer- 
\
