* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d5016;
  --secondary-color: #6b8e23;
  --accent-color: #ff6b35;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

/* Header */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-section img {
  border-radius: 50%;
  object-fit: cover;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.primary-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.primary-nav a:hover {
  color: var(--secondary-color);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 80, 22, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Introduction Section */
.introduction-section {
  padding: 80px 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-content h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.intro-content p {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 18px;
}

.intro-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Featured Benefits */
.featured-benefits {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.featured-benefits h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.benefit-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Garlic Spotlight */
.garlic-spotlight {
  padding: 80px 0;
}

.spotlight-content h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.spotlight-content img {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.spotlight-info h3 {
  color: var(--secondary-color);
  margin: 30px 0 20px;
  font-size: 24px;
}

.properties-list {
  list-style: none;
  padding-left: 0;
}

.properties-list li {
  padding: 15px;
  margin-bottom: 10px;
  background: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
  border-radius: 5px;
}

/* Expert Interview */
.expert-interview {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.expert-interview h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.interview-box {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.expert-photo {
  float: left;
  margin-right: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.interview-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.expert-credentials {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 30px;
}

.qa-block {
  margin-bottom: 25px;
  clear: both;
  padding-top: 20px;
}

.question {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.answer {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Future Quote */
.future-quote {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.quote-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
}

.quote-container h2 {
  margin-bottom: 30px;
}

.quote-container blockquote {
  font-size: 24px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.quote-container cite {
  font-size: 18px;
  font-style: normal;
  opacity: 0.9;
}

/* Latest Posts */
.latest-posts {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.latest-posts h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.post-preview {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.post-preview:hover {
  transform: translateY(-5px);
}

.post-preview img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-preview h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.post-preview p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.view-all-container {
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.view-all-btn:hover {
  background-color: var(--secondary-color);
}

/* Footer */
.main-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s;
}

.cookie-btn:hover {
  transform: scale(1.05);
}

.accept-btn {
  background-color: var(--secondary-color);
  color: var(--white);
}

.customize-btn {
  background-color: var(--text-light);
  color: var(--white);
}

.reject-btn {
  background-color: var(--border-color);
  color: var(--text-dark);
}

.cookie-policy-link {
  margin-top: 15px;
}

.cookie-policy-link a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 20px;
  opacity: 0.9;
}

/* Blog Listing */
.blog-listing {
  padding: 80px 0;
}

.blog-posts-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.post-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-content {
  padding: 30px;
}

.post-category {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.post-card-content h2 {
  margin-bottom: 15px;
}

.post-card-content h2 a {
  color: var(--primary-color);
  text-decoration: none;
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.read-more-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

/* About Page */
.about-intro {
  padding: 80px 0;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.team-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.team-member-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-member-card h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.member-position {
  padding: 0 20px;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.member-bio {
  padding: 0 20px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.values-section {
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.value-item {
  text-align: center;
  padding: 30px;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stats-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.stats-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 32px;
}

.contact-detail h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-detail a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.submit-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--primary-color);
}

.faq-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
}

.modal-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.modal-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
}

/* Article Pages */
.post-article {
  padding-bottom: 80px;
}

.article-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.article-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.article-featured-image {
  margin-bottom: 50px;
}

.article-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.article-content {
  padding: 0 0 60px;
}

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

.lead-paragraph {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.content-wrapper h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.content-wrapper h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin: 30px 0 15px;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-dark);
}

.content-wrapper ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-wrapper ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.article-cta {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.article-cta h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.related-posts {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.related-posts h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.related-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card h3 {
  padding: 20px;
}

.related-card a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .primary-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-overlay h1 {
    font-size: 32px;
  }
  
  .intro-content,
  .about-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .expert-photo {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}