:root {
  /* Main color palette */
  --primary-color: #2C5F2D;      /* Green - hemp plants and sustainability */
  --secondary-color: #97724F;    /* Earth brown - soil and farming */
  --accent-color: #E5A13D;       /* Gold - hemp crops and harvest */
  --light-color: #F9F6F0;        /* Off-white - content areas */
  --dark-color: #243E36;         /* Dark green - content areas */
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --highlight-font: 'Merriweather', serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Borders & Shadows */
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

.highlight {
  font-family: var(--highlight-font);
  color: var(--secondary-color);
}

blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  font-family: var(--highlight-font);
  font-style: italic;
  color: var(--secondary-color);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title h2 {
  display: inline-block;
  padding-bottom: var(--spacing-sm);
  border-bottom: 3px solid var(--accent-color);
}

/* Header */
header {
  background-color: #F9F6F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  height: auto;
}

header.scrolled {
  background-color: rgba(249, 246, 240, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: var(--spacing-sm);
}

.logo-text {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: var(--spacing-lg);
}

nav a {
  color: var(--dark-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(to right, var(--primary-color), var(--secondary-color));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 90px; /* Header height */
}

.page-banner {
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  margin-top: 90px;
  padding-top: 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--highlight-font);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent-color);
}

/* Mission Section */
.mission {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.mission-title {
  color: white;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Featured Services */
.services {
  text-align: center;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-item {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

/* Latest News */
.news {
  background-color: rgba(44, 95, 45, 0.05);
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.news-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.news-content {
  padding: var(--spacing-lg);
}

.news-date {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.news-excerpt {
  margin-bottom: var(--spacing-md);
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  padding: var(--spacing-lg);
}

.testimonial-text {
  font-family: var(--highlight-font);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

.testimonial-role {
  font-size: 0.9rem;
}

/* Getting Started */
.getting-started {
  background-color: rgba(229, 161, 61, 0.1);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

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

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

/* Call to Action */
.cta {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: var(--spacing-xxl) 0;
}

.cta-title {
  color: white;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-about p {
  margin-bottom: var(--spacing-md);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: white;
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  font-size: 1.5rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-select {
  height: 46px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-message {
  min-height: 150px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.faq-question {
  padding: var(--spacing-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(44, 95, 45, 0.05);
}

.faq-answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Map */
.map-container {
  height: 400px;
  margin-bottom: var(--spacing-xl);
}

/* Blog */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: var(--spacing-lg);
}

.blog-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: white;
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: var(--spacing-lg);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
  margin-bottom: var(--spacing-md);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.blog-category {
  background-color: rgba(44, 95, 45, 0.1);
  color: var(--primary-color);
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Single Blog Post */
.single-post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: var(--spacing-xl);
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.post-meta {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.post-image {
  margin-bottom: var(--spacing-xl);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.7;
}

.post-content h2,
.post-content h3 {
  margin-top: var(--spacing-xl);
}

.post-content img {
  margin: var(--spacing-lg) 0;
  border-radius: var(--border-radius);
}

.post-content ul,
.post-content ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  nav.open {
    max-height: 500px;
  }
  
  nav ul {
    flex-direction: column;
    padding: var(--spacing-md);
  }
  
  nav li {
    margin: var(--spacing-sm) 0;
    margin-left: 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .col {
    flex: 0 0 100%;
  }
  
  .footer-container {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .service-item,
  .news-item,
  .testimonial-item,
  .step-item {
    padding: var(--spacing-md);
  }
  
  .blog-container {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .cta,
  .form-container {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: #000;
  }
  
  p, li, blockquote {
    orphans: 3;
    widows: 3;
  }
  
  img {
    max-width: 100% !important;
  }
  
  @page {
    margin: 2cm;
  }
}
