/* ===============================================
   GRÜNWERK - VINTAGE RETRO GARDEN DESIGN
   CSS Reset & Base Styles
   =============================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #3a3226;
  background-color: #f5ede0;
  overflow-x: hidden;
}

/* ===============================================
   VINTAGE RETRO TYPOGRAPHY
   =============================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  border-bottom: 3px solid #E8D5B5;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: #2D5016;
}

h4 {
  font-size: 20px;
  color: #7BA05B;
}

p {
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a4034;
}

a {
  text-decoration: none;
  color: #2D5016;
  transition: all 0.3s ease;
}

a:hover {
  color: #7BA05B;
}

ul {
  list-style: none;
}

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

/* ===============================================
   CONTAINER & LAYOUT (FLEXBOX ONLY)
   =============================================== */

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

/* ===============================================
   VINTAGE RETRO BUTTONS
   =============================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #2D5016;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(45, 80, 22, 0.3);
  position: relative;
  margin: 8px;
}

.btn-primary {
  background-color: #2D5016;
  color: #f5ede0;
}

.btn-primary:hover {
  background-color: #7BA05B;
  border-color: #7BA05B;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(45, 80, 22, 0.3);
  color: #f5ede0;
}

.btn-secondary {
  background-color: #E8D5B5;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background-color: #2D5016;
  color: #E8D5B5;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(45, 80, 22, 0.3);
}

.btn-link {
  background: transparent;
  color: #2D5016;
  padding: 10px 24px;
  font-size: 14px;
  box-shadow: none;
  border: 2px solid #2D5016;
}

.btn-link:hover {
  background-color: #2D5016;
  color: #f5ede0;
  box-shadow: 3px 3px 0 rgba(45, 80, 22, 0.2);
}

/* ===============================================
   MOBILE MENU (HAMBURGER)
   =============================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5016;
  color: #f5ede0;
  border: 3px solid #E8D5B5;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #7BA05B;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2D5016;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(232, 213, 181, 0.05) 10px,
    rgba(232, 213, 181, 0.05) 20px
  );
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 5px solid #E8D5B5;
  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 3px solid #E8D5B5;
  color: #E8D5B5;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #E8D5B5;
  color: #2D5016;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #E8D5B5;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: rgba(123, 160, 91, 0.2);
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background-color: #7BA05B;
  color: #f5ede0;
  border-color: #E8D5B5;
  padding-left: 30px;
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */

header {
  background-color: #2D5016;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(232, 213, 181, 0.05) 50px,
      rgba(232, 213, 181, 0.05) 100px
    );
  border-bottom: 5px solid #E8D5B5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  padding: 12px 20px;
  color: #E8D5B5;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #f5ede0;
  background-color: #7BA05B;
  border-color: #E8D5B5;
  transform: translateY(-2px);
}

/* ===============================================
   HERO SECTIONS
   =============================================== */

.hero {
  background: linear-gradient(135deg, #2D5016 0%, #7BA05B 100%);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(232, 213, 181, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 213, 181, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #2D5016 0%, #7BA05B 100%);
  color: #f5ede0;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #E8D5B5;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(232, 213, 181, 0.03) 20px,
    rgba(232, 213, 181, 0.03) 40px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #E8D5B5;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 20px;
  color: #f5ede0;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px dashed #E8D5B5;
}

.trust-indicators span {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  color: #E8D5B5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-inner {
  background: linear-gradient(135deg, #7BA05B 0%, #2D5016 100%);
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(232, 213, 181, 0.05) 30px,
      rgba(232, 213, 181, 0.05) 60px
    ),
    linear-gradient(135deg, #7BA05B 0%, #2D5016 100%);
  color: #f5ede0;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #E8D5B5;
}

.hero-inner h1 {
  color: #E8D5B5;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-inner .hero-subtitle {
  font-size: 18px;
  color: #f5ede0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* ===============================================
   SECTION STYLES
   =============================================== */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #7BA05B;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* ===============================================
   SERVICE CARDS (FLEXBOX)
   =============================================== */

.service-grid,
.benefit-grid,
.testimonial-grid,
.post-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card,
.benefit-item,
.testimonial-card,
.post-card,
.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #fff;
  border: 4px solid #2D5016;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0 rgba(45, 80, 22, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed #E8D5B5;
  pointer-events: none;
}

.service-card:hover,
.benefit-item:hover,
.post-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(45, 80, 22, 0.3);
  border-color: #7BA05B;
}

.service-card h3,
.benefit-item h3,
.post-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p,
.benefit-item p,
.post-card p {
  color: #4a4034;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-price {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 24px;
  color: #7BA05B;
  font-weight: 700;
  margin: 20px 0;
  padding: 10px;
  background-color: #E8D5B5;
  border: 2px solid #2D5016;
  display: inline-block;
}

/* ===============================================
   TESTIMONIALS
   =============================================== */

.testimonials {
  background-color: #E8D5B5;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(45, 80, 22, 0.03) 40px,
    rgba(45, 80, 22, 0.03) 80px
  );
  padding: 60px 20px;
  border-top: 5px solid #2D5016;
  border-bottom: 5px solid #2D5016;
}

.testimonial-card {
  background-color: #fff;
  border: 4px solid #2D5016;
  padding: 30px;
  position: relative;
  box-shadow: 5px 5px 0 rgba(45, 80, 22, 0.2);
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #7BA05B;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #3a3226;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #2D5016;
  font-style: normal;
  text-align: right;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #E8D5B5;
}

/* ===============================================
   BENEFITS SECTION
   =============================================== */

.benefits {
  background-color: #fff;
  padding: 60px 20px;
}

.benefit-item {
  background-color: #f5ede0;
  border: 3px solid #7BA05B;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(123, 160, 91, 0.2);
}

.benefit-item:hover {
  border-color: #2D5016;
}

/* ===============================================
   CTA SECTIONS
   =============================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2D5016 0%, #7BA05B 100%);
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(232, 213, 181, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #2D5016 0%, #7BA05B 100%);
  color: #f5ede0;
  padding: 60px 20px;
  text-align: center;
  border-top: 6px solid #E8D5B5;
  border-bottom: 6px solid #E8D5B5;
  margin: 60px 0;
}

.cta-banner h2,
.cta-section h2 {
  color: #E8D5B5;
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-banner p,
.cta-section p {
  color: #f5ede0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================================
   SERVICE DETAIL PAGES
   =============================================== */

.service-detail {
  background-color: #fff;
  margin-bottom: 40px;
  padding: 40px 20px;
  border-top: 4px solid #E8D5B5;
}

.service-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid #E8D5B5;
}

.service-tagline {
  font-size: 18px;
  color: #7BA05B;
  font-style: italic;
  margin-top: 8px;
}

.service-features {
  background-color: #f5ede0;
  border: 3px solid #2D5016;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 5px 5px 0 rgba(45, 80, 22, 0.2);
}

.service-features h3 {
  color: #2D5016;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 16px;
  color: #4a4034;
  border-bottom: 1px dashed #E8D5B5;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA05B;
  font-weight: 700;
  font-size: 18px;
}

/* ===============================================
   BLOG & POSTS
   =============================================== */

.blog-featured {
  background: linear-gradient(135deg, #7BA05B 0%, #2D5016 100%);
  color: #f5ede0;
  padding: 50px 30px;
  border: 5px solid #E8D5B5;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(45, 80, 22, 0.3);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E8D5B5;
  color: #2D5016;
  padding: 8px 16px;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border: 2px solid #2D5016;
  transform: rotate(3deg);
}

.blog-featured h2 {
  color: #E8D5B5;
  font-size: 32px;
  margin-bottom: 16px;
  border-bottom: none;
}

.blog-featured p {
  color: #f5ede0;
  font-size: 18px;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #7BA05B;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px dashed #E8D5B5;
}

.blog-featured .post-meta {
  color: #E8D5B5;
  border-top-color: rgba(232, 213, 181, 0.3);
}

.post-meta span {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.seasonal-guide {
  background-color: #E8D5B5;
  padding: 50px 20px;
  border: 4px solid #2D5016;
  margin: 40px 0;
}

.task-list {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}

.task-list li {
  background-color: #fff;
  border: 3px solid #7BA05B;
  padding: 16px 20px 16px 50px;
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  color: #3a3226;
  box-shadow: 3px 3px 0 rgba(45, 80, 22, 0.2);
}

.task-list li::before {
  content: '🌱';
  position: absolute;
  left: 15px;
  font-size: 20px;
}

/* ===============================================
   PROJECTS
   =============================================== */

.project {
  background-color: #fff;
  border: 4px solid #2D5016;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 6px 6px 0 rgba(45, 80, 22, 0.2);
}

.project h3 {
  color: #2D5016;
  font-size: 28px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8D5B5;
}

.project-meta span {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #7BA05B;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.project blockquote {
  background-color: #f5ede0;
  border-left: 5px solid #7BA05B;
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #3a3226;
  box-shadow: 3px 3px 0 rgba(123, 160, 91, 0.2);
}

.founder-quote {
  background-color: #2D5016;
  color: #E8D5B5;
  border: 4px solid #E8D5B5;
  padding: 30px 40px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(45, 80, 22, 0.3);
}

.founder-quote p {
  font-size: 20px;
  font-style: italic;
  color: #E8D5B5;
  line-height: 1.6;
}

/* ===============================================
   CONTACT PAGE
   =============================================== */

.contact-method {
  text-align: center;
  background-color: #f5ede0;
  border: 3px solid #7BA05B;
  box-shadow: 4px 4px 0 rgba(123, 160, 91, 0.2);
}

.contact-method h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 20px;
  text-transform: uppercase;
}

.method-desc {
  font-size: 14px;
  color: #7BA05B;
  font-style: italic;
  margin-top: 12px;
}

.coverage-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.coverage-list li {
  background-color: #E8D5B5;
  border: 2px solid #2D5016;
  padding: 12px 24px;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #2D5016;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0 rgba(45, 80, 22, 0.2);
}

/* ===============================================
   THANK YOU PAGE
   =============================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #7BA05B 0%, #2D5016 100%);
  color: #f5ede0;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #E8D5B5;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #E8D5B5;
  color: #2D5016;
  border: 5px solid #2D5016;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
  box-shadow: 5px 5px 0 rgba(45, 80, 22, 0.3);
  font-weight: 700;
}

.next-steps {
  max-width: 700px;
  margin: 30px auto;
  padding-left: 0;
  counter-reset: step-counter;
}

.next-steps li {
  background-color: #f5ede0;
  border: 3px solid #7BA05B;
  padding: 20px 20px 20px 70px;
  margin-bottom: 20px;
  position: relative;
  counter-increment: step-counter;
  box-shadow: 4px 4px 0 rgba(123, 160, 91, 0.2);
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #2D5016;
  color: #E8D5B5;
  border: 2px solid #E8D5B5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
}

.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.resource-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #fff;
  border: 4px solid #2D5016;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(45, 80, 22, 0.2);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(45, 80, 22, 0.3);
  border-color: #7BA05B;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===============================================
   LEGAL PAGES
   =============================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid #2D5016;
  padding: 40px;
  box-shadow: 6px 6px 0 rgba(45, 80, 22, 0.2);
}

.legal-content h2 {
  color: #2D5016;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #E8D5B5;
  padding-bottom: 8px;
}

.legal-content h3 {
  color: #7BA05B;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #4a4034;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===============================================
   STORY & ABOUT SECTIONS
   =============================================== */

.story {
  background-color: #fff;
  padding: 60px 20px;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
  align-items: flex-start;
}

.story-column {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
}

/* ===============================================
   FOOTER
   =============================================== */

footer {
  background-color: #2D5016;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(232, 213, 181, 0.05) 30px,
    rgba(232, 213, 181, 0.05) 60px
  );
  color: #E8D5B5;
  padding: 50px 20px 20px;
  border-top: 6px solid #E8D5B5;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #E8D5B5;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #7BA05B;
  padding-bottom: 8px;
}

.footer-section p {
  color: #E8D5B5;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #E8D5B5;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: #fff;
  border-left-color: #7BA05B;
  padding-left: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px dashed #7BA05B;
  margin-top: 30px;
}

.footer-bottom p {
  color: #E8D5B5;
  font-size: 14px;
  font-family: 'Merriweather', Georgia, serif;
}

/* ===============================================
   COOKIE CONSENT BANNER
   =============================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D5016;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(232, 213, 181, 0.05) 20px,
    rgba(232, 213, 181, 0.05) 40px
  );
  color: #E8D5B5;
  padding: 20px;
  border-top: 4px solid #E8D5B5;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: #E8D5B5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #E8D5B5;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 rgba(232, 213, 181, 0.3);
}

.cookie-accept {
  background-color: #7BA05B;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #2D5016;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(232, 213, 181, 0.3);
}

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #E8D5B5;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: rgba(232, 213, 181, 0.1);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(232, 213, 181, 0.3);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 80, 22, 0.9);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #f5ede0;
  border: 5px solid #2D5016;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 rgba(232, 213, 181, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2D5016;
  color: #E8D5B5;
  border: 3px solid #E8D5B5;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background-color: #7BA05B;
  transform: rotate(90deg);
}

.cookie-category {
  background-color: #fff;
  border: 3px solid #7BA05B;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 rgba(123, 160, 91, 0.2);
}

.cookie-category h4 {
  color: #2D5016;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #4a4034;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background-color: #ccc;
  border: 2px solid #2D5016;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #7BA05B;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #2D5016;
  left: 2px;
  top: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
  background-color: #E8D5B5;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

/* ===============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =============================================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-inner h1 {
    font-size: 36px;
  }
  
  /* Flex layouts for mobile */
  .service-grid,
  .benefit-grid,
  .testimonial-grid,
  .post-grid,
  .contact-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .post-card,
  .contact-method,
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Button adjustments */
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin: 8px 0;
  }
  
  /* Story content */
  .story-content {
    flex-direction: column;
  }
  
  .story-column {
    flex: 1 1 100%;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Reduce padding on mobile */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-inner {
    padding: 50px 15px;
  }
  
  /* Resource grid */
  .resource-card {
    flex: 1 1 100%;
  }
  
  /* Coverage list */
  .coverage-list ul {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-item,
  .post-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

/* ===============================================
   ANIMATIONS & TRANSITIONS
   =============================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.benefit-item,
.testimonial-card,
.post-card {
  animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
.service-card:hover h3,
.benefit-item:hover h3 {
  color: #7BA05B;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid #7BA05B;
  outline-offset: 3px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .hero,
  .hero-inner {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }
}