/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D5016;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #2c3e50;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

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

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu li a {
  font-weight: 500;
  color: #2D5016;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #8B9D77;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2D5016;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: #2D5016;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 32px;
  color: #2D5016;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2D5016;
  padding: 12px 0;
  border-bottom: 1px solid #E8F4E3;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B9D77;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #1f3910;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2D5016;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

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

.hero {
  background: linear-gradient(135deg, #E8F4E3 0%, #ffffff 100%);
  padding: 80px 24px;
  text-align: center;
}

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

.hero h1 {
  font-size: 48px;
  color: #2D5016;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #2D5016;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-inner {
  background: linear-gradient(135deg, #E8F4E3 0%, #ffffff 100%);
  padding: 60px 24px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-inner h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-inner p {
  font-size: 18px;
  color: #2c3e50;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   CARD LAYOUTS
   ======================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.benefits {
  padding: 60px 24px;
  background-color: #ffffff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.benefit-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  color: #2D5016;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-description {
  text-align: center;
  font-size: 18px;
  color: #2c3e50;
  max-width: 700px;
  margin: 0 auto 48px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.service-card h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  margin: 16px 0;
  display: block;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

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

.testimonials {
  padding: 60px 24px;
  background-color: #E8F4E3;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e50;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .customer-name {
  font-weight: 700;
  color: #2D5016;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-card .customer-location {
  font-size: 14px;
  color: #8B9D77;
}

/* ========================================
   IMPACT SECTION
   ======================================== */

.impact {
  padding: 60px 24px;
  background-color: #ffffff;
}

.impact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-card {
  background: #F9FBFE;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #2D5016;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #2D5016 0%, #1f3910 100%);
  text-align: center;
  margin: 60px 0;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

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

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

.cta-section .btn-primary {
  background-color: #ffffff;
  color: #2D5016;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: #E8F4E3;
  border-color: #E8F4E3;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #2D5016;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */

.products {
  padding: 60px 24px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.product-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #2D5016;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-card h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 12px;
}

.product-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  margin: 16px 0;
  display: block;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  background-color: #E8F4E3;
  color: #2D5016;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.feature-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #2c3e50;
}

/* ========================================
   ABOUT PAGE - STORY & TIMELINE
   ======================================== */

.story {
  padding: 60px 24px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 20px;
}

.timeline {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2D5016;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item .year {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  display: block;
}

.timeline-item h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 22px;
  color: #2D5016;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e50;
}

/* ========================================
   CERTIFICATIONS
   ======================================== */

.certifications {
  padding: 60px 24px;
  background-color: #E8F4E3;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 48px;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.cert-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-card h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 14px;
  color: #2c3e50;
}

/* ========================================
   SUSTAINABILITY PAGE
   ======================================== */

.mission {
  padding: 60px 24px;
}

.mission h2 {
  text-align: center;
  margin-bottom: 32px;
}

.commitment-list {
  max-width: 700px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.commitment-list li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e50;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: 700;
  font-size: 18px;
}

.impact-metrics {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.impact-metrics h2 {
  text-align: center;
  margin-bottom: 48px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.metric-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: #2D5016;
  display: block;
  line-height: 1;
}

.metric-card h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 14px;
  color: #2c3e50;
}

.initiatives {
  padding: 60px 24px;
}

.initiatives h2 {
  text-align: center;
  margin-bottom: 48px;
}

.initiatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.initiative-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.initiative-card h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.initiative-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e50;
  flex-grow: 1;
}

.initiative-card .impact {
  font-weight: 700;
  color: #2D5016;
  font-size: 16px;
  margin-top: 12px;
  display: block;
}

.partnerships {
  padding: 60px 24px;
  background-color: #E8F4E3;
}

.partnerships h2 {
  text-align: center;
  margin-bottom: 48px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.partner-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-card h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 14px;
  color: #2c3e50;
}

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-featured {
  padding: 60px 24px;
  background-color: #E8F4E3;
}

.featured-post {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2D5016;
  background-color: #E8F4E3;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.featured-post h2 {
  font-size: 32px;
  color: #2D5016;
  margin-bottom: 16px;
}

.post-excerpt {
  font-size: 17px;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 14px;
  color: #8B9D77;
}

.blog-posts {
  padding: 60px 24px;
}

.blog-posts h2 {
  text-align: center;
  margin-bottom: 48px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.post-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.post-card h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.post-card p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.7;
  flex-grow: 1;
}

.post-date {
  font-size: 13px;
  color: #8B9D77;
  margin-top: 12px;
}

.popular-topics {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.popular-topics h2 {
  text-align: center;
  margin-bottom: 32px;
}

.topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.topic-tag {
  background-color: #E8F4E3;
  color: #2D5016;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background-color: #2D5016;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.contact-options {
  padding: 60px 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #2c3e50;
}

.contact-form-section {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-note {
  text-align: center;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-note a {
  color: #2D5016;
  font-weight: 600;
  text-decoration: underline;
}

.contact-subjects {
  margin-top: 32px;
}

.contact-subjects h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 16px;
}

.contact-subjects ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-subjects li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: #2c3e50;
}

.contact-subjects li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-size: 20px;
}

.store-info {
  padding: 60px 24px;
}

.store-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.7;
}

.faq-section {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.7;
}

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

.legal-content {
  padding: 60px 24px;
}

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

.legal-section {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-section h2 {
  font-size: 24px;
  color: #2D5016;
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 16px;
}

.legal-section a {
  color: #2D5016;
  font-weight: 600;
  text-decoration: underline;
}

.contact-section {
  padding: 60px 24px;
  background-color: #F9FBFE;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 16px;
}

.contact-section p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section a {
  color: #2D5016;
  font-weight: 600;
  text-decoration: underline;
}

/* GDPR PAGE */
.gdpr-rights {
  padding: 60px 24px;
}

.gdpr-rights h2 {
  text-align: center;
  margin-bottom: 48px;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.right-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.right-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.right-card h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.right-card p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.7;
}

.processing-info {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.processing-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.process-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 12px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-card h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14px;
  color: #2c3e50;
}

.complaint-info {
  padding: 60px 24px;
  text-align: center;
}

.complaint-info h2 {
  margin-bottom: 24px;
}

.complaint-info p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.authority-info {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

.authority-info h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 16px;
}

.authority-info p {
  font-size: 15px;
  line-height: 1.7;
}

/* COOKIES PAGE */
.cookies-explanation {
  padding: 60px 24px;
  text-align: center;
}

.cookies-explanation h2 {
  margin-bottom: 24px;
}

.cookies-explanation p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.cookie-types {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.cookie-types h2 {
  text-align: center;
  margin-bottom: 48px;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-category {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.cookie-category h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.cookie-category p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.7;
}

.required-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #2D5016;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.cookie-list {
  padding: 60px 24px;
}

.cookie-list h2 {
  text-align: center;
  margin-bottom: 48px;
}

.cookie-table {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #E8F4E3;
  padding: 16px;
}

.table-row:first-child {
  background-color: #2D5016;
  color: #ffffff;
}

.table-row:first-child .cell {
  color: #ffffff;
}

.cell {
  flex: 1 1 25%;
  min-width: 120px;
  padding: 8px;
  font-size: 14px;
}

.cookie-management {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.cookie-management h2 {
  text-align: center;
  margin-bottom: 24px;
}

.cookie-management > p {
  text-align: center;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.browser-instructions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.browser-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
}

.browser-item h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 12px;
}

.browser-item p {
  font-size: 14px;
  color: #2c3e50;
}

/* OBCHODNI PODMINKY */
.company-details {
  padding: 60px 24px;
  background-color: #F9FBFE;
}

.company-details h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-info {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.company-info p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.dispute-resolution {
  padding: 60px 24px;
  text-align: center;
}

.dispute-resolution h2 {
  margin-bottom: 24px;
}

.dispute-resolution p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

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

.thank-you-hero {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, #E8F4E3 0%, #ffffff 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D5016;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 24px;
}

.confirmation-message {
  font-size: 16px;
  color: #2c3e50;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.next-steps {
  padding: 60px 24px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 16px;
}

.response-time {
  padding: 60px 24px;
  background-color: #F9FBFE;
  text-align: center;
}

.response-time h2 {
  margin-bottom: 24px;
}

.time-estimate {
  font-size: 18px;
  color: #2D5016;
  font-weight: 600;
  margin-bottom: 16px;
}

.urgent-contact {
  font-size: 16px;
  color: #2c3e50;
}

.contact-info-section {
  padding: 60px 24px;
}

.contact-info-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.info-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item h3 {
  font-size: 16px;
  color: #2D5016;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 14px;
  color: #2c3e50;
}

.quick-links {
  padding: 60px 24px;
}

.quick-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.link-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 8px;
}

.link-card p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 16px;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee {
  padding: 60px 24px;
  background-color: #E8F4E3;
  text-align: center;
}

.guarantee h2 {
  margin-bottom: 24px;
}

.guarantee > p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.guarantee-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.guarantee-list li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #2c3e50;
}

.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: 700;
  font-size: 20px;
}

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

footer {
  background-color: #2D5016;
  color: #ffffff;
  padding: 60px 24px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 36px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #E8F4E3;
  margin-bottom: 8px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: #E8F4E3;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

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

.footer-bottom p {
  font-size: 14px;
  color: #E8F4E3;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D5016;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #E8F4E3;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #2D5016;
}

.cookie-btn-accept:hover {
  background-color: #E8F4E3;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #E8F4E3;
  text-decoration: underline;
  padding: 10px 16px;
}

.cookie-btn-settings:hover {
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: #2D5016;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  font-size: 28px;
  color: #2D5016;
  margin-bottom: 24px;
}

.cookie-category-modal {
  padding: 20px;
  border: 1px solid #E8F4E3;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category-modal h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category-modal p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #2D5016;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background-color: #8B9D77;
  cursor: not-allowed;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .benefit-card,
  .stat-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .service-card,
  .product-card {
    flex: 1 1 calc(50% - 16px);
  }
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .product-card,
  .stat-card,
  .feature-card,
  .value-card,
  .cert-card,
  .metric-card,
  .initiative-card,
  .partner-card,
  .post-card,
  .contact-card,
  .right-card,
  .process-card,
  .step-card,
  .link-card,
  .info-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  /* Table */
  .table-row {
    flex-direction: column;
  }
  
  .cell {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 24px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero,
  .hero-inner {
    padding: 40px 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .metric-value {
    font-size: 36px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #2D5016;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #2D5016;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}