/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fdf6e9;
  font-family: 'Georgia', serif;
  color: #1f2b20;
}
/* Navbar Placeholder */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background-color: #c2dbb2;
  height: 80px;
  position: relative;
  z-index: 1;
}

.logo-placeholder {
  position: absolute;
  right: 40px;
  top: -20px;
  width: 120px;
  height: 120px;
  background-color: white;
  border: 4px solid #c2dbb2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #1f2b20;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover {
  background-color: #1f2b20;
  color: white;
}

.nav-menu a.active {
  background-color: #1f2b20;
  color: white;
  font-weight: 600;
}

.logo-placeholder img {
  height: 100px;
  width: auto;
  max-width: 100px;
}

.banner {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.banner img {
  width: 40%;
  height: auto;
  border-radius: 12px;
}


/* Hero Text */
.hero-text {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1f2b20;
}

.hero-text h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #1f2b20;
  font-style: italic;
}

.hero-text ul {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
  padding-left: 0;
  list-style: none;
}

.hero-text li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #1f2b20;
}

.hero-text li::before {
  content: "— ";
  color: #1f2b20;
  margin-right: 8px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Framework Image */
.hero-text img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  height: auto;
}

/* Statistics Styling */
.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  padding: 20px 0;
  flex-wrap: wrap;
}

.stat-item {
  position: relative;
  width: 180px;
  height: 180px;
  background-color: #c2dbb2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 8px;
  width: 180px;
  height: 180px;
  border: 3px solid #1f2b20;
  border-radius: 50%;
  transform: rotate(5deg);
  z-index: 1;
}

.stat-item:nth-child(2)::before {
  transform: rotate(-7deg);
  left: 10px;
}

.stat-item:nth-child(3)::before {
  transform: rotate(12deg);
  left: 6px;
}

.stat-item:nth-child(4)::before {
  transform: rotate(-3deg);
  left: 9px;
}

.stat-item:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.stat-number {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-bottom: 2px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.hero-text .stat-text {
  font-size: 14px !important;
  line-height: 1.1 !important;
  color: black !important;
  margin: 0 !important;
  font-weight: 500 !important;
  position: relative;
  z-index: 2;
  max-width: 120px;
  word-spacing: -1px;
}

/* Services Page Styling */
.services-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #ffffff;
  border: 2px solid #c2dbb2;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 10px;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1f2b20;
  font-style: italic;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.service-card li {
  font-size: 14px;
  line-height: 1.5;
  color: #1f2b20;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: "— ";
  color: #c2dbb2;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #1f2b20;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

/* Contact Page Styling */
.contact-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background-color: #ffffff;
  border: 2px solid #c2dbb2;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #1f2b20;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Georgia', serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c2dbb2;
  box-shadow: 0 0 0 3px rgba(194, 219, 178, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #c2dbb2;
  color: #1f2b20;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background-color: #1f2b20;
  color: white;
  transform: translateY(-2px);
}

/* Success Message Styles */
.form-message {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  animation: slideDown 0.5s ease-out;
}

.success-message {
  background-color: #f0f9f0;
  border: 2px solid #4CAF50;
  color: #1f2b20;
}

.message-icon {
  font-size: 2rem;
  color: #4CAF50;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-message h4 {
  font-size: 1.3rem;
  color: #1f2b20;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info {
  background-color: #f8f8f8;
  border-radius: 15px;
  padding: 30px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 30px;
  text-align: center;
}

.contact-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2b20;
  margin: 0;
}

/* New Contact Cards Layout */
.contact-info {
  background-color: #ffffff;
  border: 2px solid #c2dbb2;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 10px;
}

.contact-card {
  background: #f8fdf5;
  border: 1px solid #e0e8dc;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #c2dbb2;
  background-color: #f0f7ec;
}

.contact-icon {
  display: none;
}

.contact-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #1f2b20;
  margin: 0;
}

.contact-card a {
  color: #1f2b20;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.contact-card a:hover {
  color: #c2dbb2;
  text-decoration: underline;
}

.email-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.email-list p {
  margin: 0;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navbar Fixes */
  .navbar {
    padding: 0 10px 0 5px; /* Space on right for logo, minimal on left */
    height: 60px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
  }
  
  .logo-placeholder {
    position: absolute;
    right: 5px; /* Much closer to edge */
    top: -15px;
    width: 60px; /* Smaller logo */
    height: 60px;
    border: 2px solid #c2dbb2; /* Thinner border */
    z-index: 10;
  }
  
  .logo-placeholder img {
    height: 45px; /* Smaller image */
    width: auto;
    max-width: 45px;
  }
  
  .nav-menu {
    flex: 1;
    width: calc(100% - 50px); /* Even more space for navigation */
    padding-right: 0;
    padding-left: 10px; /* Add some left margin */
  }
  
  .nav-menu ul {
    gap: 8vw; /* Much larger viewport width spacing */
    flex-wrap: nowrap;
    justify-content: flex-start; /* Push everything to the left */
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: visible; /* Make sure nothing is hidden */
    display: flex; /* Ensure flexbox is working */
  }
  
  .nav-menu li {
    flex: none; /* Don't stretch items */
    text-align: left;
    min-width: 0;
  }
  
  .nav-menu a {
    font-size: 12px; /* Slightly larger for readability */
    padding: 4px 2px;
    white-space: nowrap;
    display: block;
  }
  
  /* Hero sections mobile */
  .hero-text {
    padding: 40px 20px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Banner mobile */
  .banner img {
    width: 90%;
  }
  
  /* Framework section mobile */
  .framework-intro {
    padding: 40px 20px;
  }
  
  .framework-intro h2 {
    font-size: 1.8rem;
  }
  
  .framework-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .framework-item h3 {
    font-size: 1.3rem;
  }
  
  /* Statistics mobile */
  .stats-container {
    padding: 40px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stat-item {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  
  /* Crisis section mobile */
  .crisis-section {
    padding: 40px 20px;
  }
  
  .crisis-content h2 {
    font-size: 1.8rem;
  }
  
  .crisis-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Services mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  /* Contact form mobile */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  /* Newsletter mobile */
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .newsletter-form input {
    text-align: center;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .navbar {
    height: 50px;
    padding: 0 2px 0 10px; /* Even less padding on right */
  }
  
  .logo-placeholder {
    width: 50px; /* Even smaller logo */
    height: 50px;
    right: 2px; /* Right at the edge */
    top: -8px;
    border: 2px solid #c2dbb2;
  }
  
  .logo-placeholder img {
    height: 35px; /* Much smaller image */
    max-width: 35px;
  }
  
  .nav-menu {
    width: calc(100% - 55px); /* Maximum space for navigation */
    padding-right: 0;
  }
  
  .nav-menu ul {
    gap: 8vw; /* Much larger spacing */
    justify-content: flex-start;
  }
  
  .nav-menu a {
    font-size: 9px;
    padding: 3px 0px;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
  }
  
  .hero-text h2 {
    font-size: 1.1rem;
  }
  
  .framework-item,
  .service-card {
    padding: 20px;
  }
  
  .stat-item {
    width: 160px;
    height: 160px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
}

/* Blog Page Styling */
.blog-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #c2dbb2;
}

.blog-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1f2b20;
  margin: 0;
}

.admin-toggle {
  background-color: #c2dbb2;
  color: #1f2b20;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.admin-toggle:hover {
  background-color: #1f2b20;
  color: white;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.blog-post {
  background-color: #ffffff;
  border: 2px solid #c2dbb2;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.post-category {
  background-color: #c2dbb2;
  color: #1f2b20;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-date {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.blog-post h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #1f2b20;
  margin-bottom: 20px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.post-author {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.read-more {
  color: #1f2b20;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #c2dbb2;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more:hover {
  background-color: #c2dbb2;
  color: #1f2b20;
}

/* Admin Panel Styling */
.admin-panel {
  background-color: #f8f8f8;
  border: 2px solid #c2dbb2;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 800px;
  padding: 0 20px;
}

.admin-container {
  padding: 40px;
}

.admin-container h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2b20;
  margin-bottom: 30px;
  text-align: center;
}

.blog-form {
  display: flex;
  flex-direction: column;
}

.admin-btn {
  background-color: #c2dbb2;
  color: #1f2b20;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin: 10px 10px 0 0;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.admin-btn:hover {
  background-color: #1f2b20;
  color: white;
}

.admin-btn.cancel {
  background-color: #dc3545;
  color: white;
}

.admin-btn.cancel:hover {
  background-color: #c82333;
}

/* Newsletter Styling */
.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 20px auto 0;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #c2dbb2;
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-form button {
  background-color: #c2dbb2;
  color: #1f2b20;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #1f2b20;
  color: white;
}

/* About Page Styles */
.about-story {
  padding: 60px 20px;
  background-color: #fdf6e9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #1f2b20;
  margin-bottom: 30px;
  font-weight: 400;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1f2b20;
}

.story-image {
  position: sticky;
  top: 20px;
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, #c2dbb2 0%, #a8c998 100%);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image {
  aspect-ratio: 4/3;
  width: 100%;
}

.person-image {
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 300px;
}

.placeholder-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.placeholder-content p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.placeholder-content span {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

/* Founders Section */
.founders-section {
  padding: 80px 20px;
  background-color: white;
}

.founders-container {
  max-width: 1200px;
  margin: 0 auto;
}

.founders-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2b20;
  margin-bottom: 60px;
  font-weight: 400;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-image {
  margin-bottom: 30px;
}

.founder-info h3 {
  font-size: 1.8rem;
  color: #1f2b20;
  margin-bottom: 10px;
  font-weight: 400;
}

.founder-title {
  font-size: 1.1rem;
  color: #6b7c6e;
  font-style: italic;
  margin-bottom: 20px;
}

.founder-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2b20;
  margin-bottom: 15px;
}

/* Approach Section */
.approach-section {
  padding: 80px 20px;
  background-color: #fdf6e9;
}

.approach-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.approach-container h2 {
  font-size: 2.5rem;
  color: #1f2b20;
  margin-bottom: 50px;
  font-weight: 400;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.approach-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item h3 {
  font-size: 1.5rem;
  color: #1f2b20;
  margin-bottom: 20px;
  font-weight: 400;
}

.approach-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2b20;
}

/* Mission Section */
.mission-section {
  padding: 80px 20px;
  background-color: white;
}

.mission-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mission-container h2 {
  font-size: 2.5rem;
  color: #1f2b20;
  margin-bottom: 30px;
  font-weight: 400;
}

.mission-statement {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1f2b20;
  margin-bottom: 50px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-item {
  text-align: left;
  padding: 30px;
  background-color: #fdf6e9;
  border-radius: 10px;
  border-left: 4px solid #c2dbb2;
}

.value-item h4 {
  font-size: 1.3rem;
  color: #1f2b20;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2b20;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #c2dbb2;
  color: #1f2b20;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1f2b20;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .story-content h2,
  .founders-container h2,
  .approach-container h2,
  .mission-container h2 {
    font-size: 2rem;
  }
}

/* WordPress Blog Integration Styles */
.blog-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.category-filter select {
  padding: 8px 15px;
  border: 2px solid #c2dbb2;
  border-radius: 6px;
  background-color: white;
  color: #1f2b20;
  font-size: 14px;
  cursor: pointer;
}

.category-filter select:focus {
  outline: none;
  border-color: #1f2b20;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #c2dbb2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-state p {
  color: #6b7c6e;
  font-size: 1.1rem;
}

/* Error State */
.error-state {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff5f5;
  border-radius: 10px;
  margin: 20px;
}

.error-state h3 {
  color: #d69e2e;
  margin-bottom: 10px;
}

.error-state p {
  color: #6b7c6e;
  margin-bottom: 20px;
}

.retry-btn {
  background-color: #c2dbb2;
  color: #1f2b20;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.retry-btn:hover {
  background-color: #1f2b20;
  color: white;
}

/* Enhanced Blog Post Styles */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.blog-post {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 25px;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.post-category {
  background-color: #c2dbb2;
  color: #1f2b20;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-date {
  color: #6b7c6e;
  font-size: 14px;
}

.blog-post h3 {
  margin: 15px 0;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
}

.blog-post h3 a {
  color: #1f2b20;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post h3 a:hover {
  color: #c2dbb2;
}

.post-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-excerpt p {
  margin: 0;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.post-author {
  color: #6b7c6e;
  font-size: 14px;
  font-style: italic;
}

.read-more {
  color: #c2dbb2;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #1f2b20;
}

/* No Posts State */
.no-posts {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  grid-column: 1 / -1;
}

.no-posts h3 {
  color: #1f2b20;
  margin-bottom: 10px;
}

.no-posts p {
  color: #6b7c6e;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
}

.page-btn {
  background-color: #c2dbb2;
  color: #1f2b20;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
  background-color: #1f2b20;
  color: white;
}

.page-btn:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

#page-info {
  color: #1f2b20;
  font-weight: 600;
  padding: 0 20px;
}

/* Responsive Blog Design */
@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .blog-controls {
    justify-content: center;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .pagination {
    flex-direction: column;
    gap: 15px;
  }
}

/* Blog Preview Page Styles */
.placeholder-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #c2dbb2 0%, #a8c998 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.blog-post:hover .placeholder-image {
  transform: scale(1.02);
}

.placeholder-image .placeholder-content {
  text-align: center;
  color: white;
}

.placeholder-image .placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.placeholder-image span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Blog CTA Section */
.blog-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdf6e9 0%, #f5f1e8 100%);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-cta h2 {
  font-size: 2.5rem;
  color: #1f2b20;
  margin-bottom: 20px;
  font-weight: 400;
}

.blog-cta > .cta-container > p {
  font-size: 1.2rem;
  color: #6b7c6e;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h4 {
  font-size: 1.1rem;
  color: #1f2b20;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  color: #6b7c6e;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.blog-visit-btn {
  display: inline-block;
  background-color: #c2dbb2;
  color: #1f2b20;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid #c2dbb2;
}

.blog-visit-btn:hover {
  background-color: #1f2b20;
  color: white;
  border-color: #1f2b20;
  transform: translateY(-2px);
}

/* Responsive Blog CTA */
@media (max-width: 768px) {
  .cta-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-cta h2 {
    font-size: 2rem;
  }
  
  .blog-cta > .cta-container > p {
    font-size: 1rem;
  }
  
  .feature {
    padding: 20px 15px;
  }
}

/* Thank You Page Styles */
.thank-you-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fdf6e9 0%, #f0e6d3 100%);
}

.thank-you-content {
  max-width: 800px;
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 43, 32, 0.1);
  border: 2px solid #c2dbb2;
}

.thank-you-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.thank-you-content h1 {
  font-size: 3rem;
  color: #1f2b20;
  margin-bottom: 15px;
  font-weight: 700;
}

.thank-you-content h2 {
  font-size: 1.5rem;
  color: #6b7c7b;
  margin-bottom: 30px;
  font-weight: 400;
}

.thank-you-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1f2b20;
  margin-bottom: 30px;
}

.response-info {
  background: #f8fdf5;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #c2dbb2;
  margin: 30px 0;
  text-align: left;
}

.response-info h3 {
  color: #1f2b20;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.response-info ul {
  list-style: none;
  padding: 0;
}

.response-info li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(194, 219, 178, 0.3);
  font-size: 1rem;
  line-height: 1.5;
}

.response-info li:last-child {
  border-bottom: none;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.thank-you-actions .btn {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background-color: #c2dbb2;
  color: #1f2b20;
  border: 2px solid #c2dbb2;
}

.primary-btn:hover {
  background-color: #1f2b20;
  color: white;
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: transparent;
  color: #1f2b20;
  border: 2px solid #c2dbb2;
}

.secondary-btn:hover {
  background-color: #c2dbb2;
  transform: translateY(-2px);
}

.contact-reminder {
  background: #f0f7ec;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.contact-reminder p {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-reminder a {
  color: #1f2b20;
  text-decoration: none;
  font-weight: 600;
}

.contact-reminder a:hover {
  color: #c2dbb2;
  text-decoration: underline;
}

/* Thank You Page Mobile Responsiveness */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .thank-you-content h1 {
    font-size: 2.5rem;
  }
  
  .thank-you-content h2 {
    font-size: 1.3rem;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .thank-you-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .response-info {
    padding: 20px;
    text-align: center;
  }
  
  .response-info ul {
    text-align: left;
  }
}
