/* ===================================
   BRISK SANDER - MINIMALIST DESIGN
   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;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - MINIMALIST STYLE
   =================================== */

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

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

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
  line-height: 1.8;
}

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

a:hover {
  color: #8B3000;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4A5568;
}

strong {
  font-weight: 600;
  color: #1A1A1A;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

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

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

/* ===================================
   HEADER & NAVIGATION - MINIMALIST
   =================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 32px;
  color: #2C3E50;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #C44100;
}

/* ===================================
   MOBILE MENU - CLEAN & SIMPLE
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: #F7FAFC;
  border-color: #C44100;
  color: #C44100;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1002;
  padding: 24px;
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C44100;
  color: #FFFFFF;
  border-color: #C44100;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: #2C3E50;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #FFF4E6;
  border-left-color: #C44100;
  color: #C44100;
}

/* ===================================
   BUTTONS - MINIMALIST DESIGN
   =================================== */

.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: none;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: #C44100;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(196, 65, 0, 0.2);
}

.btn-primary:hover {
  background-color: #8B3000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 65, 0, 0.3);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #C44100;
  border: 2px solid #C44100;
}

.btn-secondary:hover {
  background-color: #C44100;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

/* ===================================
   HERO SECTION - MINIMALIST
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF4E6 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #E2E8F0;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #1A1A1A;
}

.hero-subtitle {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-badge {
  margin-top: 32px;
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

/* ===================================
   PAGE HERO - MINIMALIST
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF4E6 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #E2E8F0;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 16px;
}

.highlight {
  color: #C44100;
  font-weight: 600;
}

.last-updated {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-bottom: 16px;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.details-grid,
.options-grid,
.comparison-grid,
.initiatives-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.detail-card,
.option-card,
.comparison-card,
.initiative-card,
.method-card {
  flex: 1 1 100%;
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.option-card:hover,
.initiative-card:hover,
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #C44100;
}

.benefit-card h3,
.service-card h3,
.step h3,
.detail-card h3,
.option-card h3,
.initiative-card h3,
.method-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.detail-card p,
.option-card p,
.initiative-card p,
.method-card p {
  color: #4A5568;
  margin-bottom: 8px;
}

/* ===================================
   SERVICE CARDS - MINIMALIST
   =================================== */

.price {
  font-size: 28px;
  font-weight: 700;
  color: #C44100;
  margin: 16px 0;
  display: block;
}

.service-card p.price {
  margin-top: 8px;
}

/* ===================================
   STEP CARDS - CLEAN DESIGN
   =================================== */

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 16px;
  line-height: 1;
}

.step-detailed {
  background: #FFFFFF;
  padding: 40px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 32px;
}

.step-detailed .step-number {
  font-size: 64px;
  color: #FFF4E6;
  margin-bottom: 24px;
}

.step-detailed h2 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.step-detailed ul {
  margin-top: 16px;
  padding-left: 20px;
}

.step-detailed li {
  margin-bottom: 12px;
  color: #4A5568;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonial-card {
  background: #F7FAFC;
  padding: 32px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
}

.testimonial-card p {
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.author {
  font-weight: 600;
  color: #1A1A1A;
  font-style: normal;
  margin-top: 16px;
  font-size: 14px;
}

.rating {
  color: #F7931E;
  font-size: 18px;
  margin-top: 8px;
}

/* ===================================
   LISTS & CONTENT
   =================================== */

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.benefits-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4A5568;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C44100;
  font-weight: bold;
  font-size: 18px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.features-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4A5568;
}

.features-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C44100;
  font-size: 24px;
  line-height: 1;
}

/* ===================================
   SPECIAL SECTIONS
   =================================== */

.subscription-promo,
.cta-final,
.cta-section,
.cta-subscription,
.cta-about {
  background: #FFF4E6;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.subscription-promo h2,
.cta-final h2,
.cta-section h2,
.cta-subscription h2,
.cta-about h2 {
  margin-bottom: 16px;
}

.subscription-promo p,
.cta-final p,
.cta-section p,
.cta-subscription p,
.cta-about p {
  font-size: 18px;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.special-offer {
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 4px;
  border: 2px dashed #C44100;
  display: inline-block;
  margin: 24px 0;
  font-weight: 600;
  color: #C44100;
}

.savings-highlight {
  font-size: 24px;
  font-weight: 700;
  color: #C44100;
  margin: 32px 0;
  text-align: center;
}

.benefit-summary {
  font-size: 16px;
  color: #4A5568;
  margin: 16px 0;
}

.guarantee {
  font-size: 14px;
  color: #718096;
  margin-top: 24px;
  font-style: italic;
}

/* ===================================
   MENU & PRICING
   =================================== */

.menu-item {
  background: #FFFFFF;
  padding: 32px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 32px;
}

.menu-item h2 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.menu-item .price {
  font-size: 32px;
  color: #C44100;
  margin: 16px 0;
}

.description {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.calories,
.ingredients,
.allergens {
  font-size: 14px;
  color: #718096;
  margin: 8px 0;
}

.plan-card {
  background: #FFFFFF;
  padding: 48px;
  border: 2px solid #C44100;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(196, 65, 0, 0.1);
}

.plan-price {
  font-size: 48px;
  font-weight: 700;
  color: #C44100;
  margin: 16px 0;
}

.price-per-meal {
  font-size: 18px;
  color: #718096;
  margin-bottom: 24px;
}

.savings {
  background: #FFF4E6;
  padding: 16px;
  border-radius: 4px;
  color: #C44100;
  font-weight: 600;
  margin: 24px 0;
}

/* ===================================
   COMPARISON CARDS
   =================================== */

.comparison-card.highlighted {
  border: 2px solid #C44100;
  background: #FFF4E6;
  transform: scale(1.02);
}

.comparison-card h3 {
  margin-bottom: 16px;
}

.comparison-card .price {
  font-size: 32px;
  color: #C44100;
  margin: 16px 0;
}

/* ===================================
   CONTACT & INFO SECTIONS
   =================================== */

.contact-value {
  font-size: 20px;
  font-weight: 600;
  color: #C44100;
  margin: 16px 0;
}

.response-time {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

.form-note {
  background: #F7FAFC;
  padding: 32px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin: 32px 0;
}

.form-fields ul {
  padding-left: 20px;
  margin-top: 16px;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
  font-style: italic;
}

.address {
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 16px 0;
}

.transport-info,
.parking-info {
  margin: 32px 0;
}

.transport-info h3,
.parking-info h3 {
  margin-bottom: 16px;
}

.transport-info ul,
.parking-info ul {
  padding-left: 20px;
}

.visit-note,
.delivery-reminder,
.deadline-reminder {
  background: #FFF4E6;
  padding: 16px;
  border-radius: 4px;
  color: #8B3000;
  font-weight: 500;
  margin: 24px 0;
  border-left: 4px solid #C44100;
}

.availability,
.delivery-info {
  font-size: 14px;
  color: #718096;
  margin-top: 8px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hours-list li {
  padding: 12px;
  border-bottom: 1px solid #E2E8F0;
}

.payment-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 24px auto;
}

.payment-list li {
  padding: 12px 12px 12px 40px;
  position: relative;
  border-bottom: 1px solid #E2E8F0;
}

.payment-list li:before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #C44100;
  font-weight: bold;
}

.security-note {
  font-size: 14px;
  color: #718096;
  margin-top: 24px;
  font-style: italic;
}

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

.story,
.mission-vision,
.local-partners,
.sustainability {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.text-section {
  margin-bottom: 40px;
}

.text-section h2 {
  margin-bottom: 24px;
}

.text-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.milestones {
  background: #F7FAFC;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  margin-top: 32px;
}

.milestones h3 {
  margin-bottom: 16px;
}

.milestones ul {
  list-style: none;
  padding: 0;
}

.milestones li {
  padding: 8px 0;
  border-bottom: 1px solid #E2E8F0;
}

.mission,
.vision,
.values {
  margin-bottom: 40px;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #E2E8F0;
}

.values li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C44100;
  font-weight: bold;
  font-size: 18px;
}

.commitment {
  background: #FFF4E6;
  padding: 16px;
  border-radius: 4px;
  border-left: 4px solid #C44100;
  font-weight: 600;
  color: #8B3000;
  margin-top: 24px;
}

.closing-text {
  font-size: 18px;
  color: #4A5568;
  font-style: italic;
  margin-top: 24px;
}

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

.legal-hero {
  background: #F7FAFC;
  padding: 60px 20px;
  border-bottom: 1px solid #E2E8F0;
}

.legal-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content .text-section {
  margin-bottom: 48px;
}

.legal-content h2 {
  color: #1A1A1A;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

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

.thankyou-hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF4E6 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #E2E8F0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #C44100;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(196, 65, 0, 0.2);
}

.subtitle {
  font-size: 18px;
  color: #4A5568;
  margin-top: 16px;
}

.order-confirmation,
.contact-support,
.next-steps,
.explore-more,
.thankyou-content {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-message {
  background: #FFF4E6;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #C44100;
  margin-bottom: 32px;
  text-align: center;
}

.steps-list {
  margin: 32px 0;
}

.steps-list .step {
  padding: 16px 16px 16px 48px;
  position: relative;
  margin-bottom: 16px;
  border-left: 3px solid #C44100;
  background: #F7FAFC;
}

.steps-list .step:before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #C44100;
  font-weight: bold;
  font-size: 20px;
}

.subscription-price {
  font-size: 28px;
  font-weight: 700;
  color: #C44100;
  margin: 24px 0;
  text-align: center;
}

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

.explore-link {
  padding: 16px 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  color: #C44100;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
}

.explore-link:hover {
  background: #FFF4E6;
  border-color: #C44100;
  transform: translateY(-2px);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-list {
  margin: 32px 0;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.faq-item p {
  color: #4A5568;
  margin-bottom: 0;
}

/* ===================================
   COVERAGE & AREA
   =================================== */

.coverage-area {
  background: #F7FAFC;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 8px;
}

.coverage-area h2 {
  margin-bottom: 24px;
}

.coverage-area p {
  max-width: 700px;
  margin: 0 auto 16px;
}

/* ===================================
   SOCIAL MEDIA
   =================================== */

.social-media {
  padding: 40px 20px;
  text-align: center;
}

.social-links {
  margin: 24px 0;
}

.social-links p {
  margin-bottom: 12px;
  font-weight: 500;
}

.hashtag {
  font-size: 18px;
  color: #C44100;
  font-weight: 600;
  margin: 24px 0;
}

/* ===================================
   FOOTER - MINIMALIST
   =================================== */

footer {
  background: #1A1A1A;
  color: #CBD5E0;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

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

.footer-section h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p {
  color: #CBD5E0;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #CBD5E0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #F7931E;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #2D3748;
  text-align: center;
}

.footer-bottom p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content {
  flex: 1 1 400px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: #4A5568;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #C44100;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #8B3000;
}

.cookie-reject {
  background: #FFFFFF;
  color: #4A5568;
  border: 1px solid #E2E8F0;
}

.cookie-reject:hover {
  background: #F7FAFC;
}

.cookie-settings {
  background: transparent;
  color: #C44100;
  border: 1px solid #C44100;
}

.cookie-settings:hover {
  background: #FFF4E6;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h3 {
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CBD5E0;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: #C44100;
}

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

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

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

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

@media (min-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 28px; }
  
  /* Show desktop navigation, hide mobile menu */
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  /* Grid layouts at 2 columns */
  .benefits-grid .benefit-card,
  .details-grid .detail-card,
  .methods-grid .method-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .services-grid .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .steps-grid .step {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .testimonials-grid .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Footer improvements */
  .footer-content {
    gap: 60px;
  }
  
  /* Cookie banner improvements */
  .cookie-banner .container {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  /* Container padding */
  .container {
    padding: 0 40px;
  }
  
  /* Grid layouts at 3 columns where appropriate */
  .benefits-grid .benefit-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .services-grid .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .initiatives-grid .initiative-card,
  .options-grid .option-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Larger spacing */
  .section {
    padding: 60px 40px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling behavior */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

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

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}