/* ===================================
   CRISP & TRANQUIL - MINIMALIST STYLE
   CSS Reset & Base Styles
   =================================== */

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #1a1a1a;
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { margin-bottom: 16px; color: #4a4a4a; }

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

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

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

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

.main-nav a {
  color: #5D4A38;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #8B7355;
  transition: width 0.3s ease;
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #F4EBE8;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #5D4A38;
  padding: 8px;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  color: #5D4A38;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B7355;
  padding-left: 8px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #5D4A38;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #4a3a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 74, 56, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #5D4A38;
  border: 1px solid #5D4A38;
}

.btn-secondary:hover {
  background-color: #5D4A38;
  color: #ffffff;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.hero {
  background-color: #F4EBE8;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

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

.trust-badge {
  color: #8B7355;
  font-size: 14px;
  margin-top: 16px;
}

/* Page Hero */
.hero-page {
  background-color: #F4EBE8;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.hero-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
  text-align: center;
}

.hero-page p {
  text-align: center;
  font-size: 18px;
  color: #5D4A38;
  max-width: 700px;
  margin: 0 auto 24px;
}

.hero-page .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #8B7355;
  justify-content: center;
}

.breadcrumb a {
  color: #8B7355;
}

.breadcrumb a:hover {
  color: #5D4A38;
}

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

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

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

.section-subtitle {
  text-align: center;
  color: #8B7355;
  margin-bottom: 48px;
  font-size: 18px;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background-color: #F4EBE8;
  transform: translateY(-4px);
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #5D4A38;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #6a6a6a;
}

/* ===================================
   FEATURED SERVICES
   =================================== */

.featured-services {
  padding: 60px 20px;
  background-color: #ffffff;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #8B7355;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p {
  margin-bottom: 16px;
  color: #6a6a6a;
  font-size: 15px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #5D4A38;
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process {
  padding: 60px 20px;
  background-color: #F4EBE8;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 2px;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  color: #A8C5B5;
  display: block;
  margin-bottom: 16px;
  font-weight: 300;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #5D4A38;
}

.step p {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.6;
}

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

.testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  padding: 32px;
  background-color: #fafafa;
  border-left: 3px solid #8B7355;
  border-radius: 2px;
  position: relative;
}

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

.testimonial-card .author {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #5D4A38;
  margin-bottom: 0;
}

/* ===================================
   TRUST INDICATORS
   =================================== */

.trust-indicators {
  padding: 40px 20px;
  background-color: #F4EBE8;
}

.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.indicator {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  font-size: 14px;
  color: #5D4A38;
  padding: 16px;
}

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

.products {
  padding: 60px 20px;
}

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

.product-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: #8B7355;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.product-card p {
  margin-bottom: 16px;
  color: #6a6a6a;
  font-size: 15px;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #5D4A38;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.product-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #8B7355;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 2px;
  font-weight: 600;
}

/* ===================================
   WORKSHOPS
   =================================== */

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

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

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 2px;
  text-align: center;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #5D4A38;
}

.benefit-item p {
  font-size: 14px;
  color: #6a6a6a;
}

.workshops-schedule {
  padding: 60px 20px;
}

.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.workshop-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 320px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  border-color: #8B7355;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.workshop-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.workshop-card .date,
.workshop-card .level,
.workshop-card .instructor,
.workshop-card .spots {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 8px;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #5D4A38;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   INSPIRATIONS
   =================================== */

.inspirations {
  padding: 60px 20px;
}

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

.project-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 2px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.project-card:hover {
  background-color: #F4EBE8;
  transform: translateY(-4px);
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #5D4A38;
}

.project-card .difficulty,
.project-card .time {
  font-size: 13px;
  color: #8B7355;
  margin-top: 12px;
}

.seasonal-projects {
  padding: 60px 20px;
  background-color: #F4EBE8;
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.season-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 2px;
}

.season-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #5D4A38;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
  padding: 80px 20px;
  background-color: #5D4A38;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #F4EBE8;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #5D4A38;
}

.cta-banner .btn-primary:hover {
  background-color: #F4EBE8;
}

.cta-banner .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-banner .btn-secondary:hover {
  background-color: #ffffff;
  color: #5D4A38;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.brand-story,
.values,
.achievements,
.location {
  padding: 60px 20px;
}

.brand-story {
  background-color: #ffffff;
}

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

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

.mission {
  font-size: 20px;
  color: #5D4A38;
  font-style: italic;
  padding: 24px;
  background-color: #F4EBE8;
  border-left: 3px solid #8B7355;
  margin-top: 32px;
}

.achievements {
  background-color: #F4EBE8;
}

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

.stat-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 2px;
}

.stat-item h3 {
  font-size: 48px;
  color: #8B7355;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #6a6a6a;
}

.location-info {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 2px;
}

.location-info p {
  margin-bottom: 8px;
  font-size: 15px;
}

.location-info strong {
  color: #5D4A38;
  display: block;
  margin-top: 16px;
  margin-bottom: 8px;
}

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

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

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

.contact-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 2px;
  text-align: center;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #5D4A38;
}

.contact-card p {
  font-size: 15px;
  color: #6a6a6a;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #F4EBE8;
}

.form-wrapper {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 2px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #5D4A38;
  font-size: 14px;
  font-weight: 600;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #8B7355;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: #8B7355;
  text-align: center;
}

.store-location {
  padding: 60px 20px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.detail-block {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 2px;
}

.detail-block h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #5D4A38;
}

.detail-block p {
  font-size: 15px;
  color: #6a6a6a;
  margin-bottom: 8px;
}

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

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

.update-date {
  text-align: center;
  color: #8B7355;
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-content .text-section h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content .text-section h3 {
  text-align: left;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content .text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content .text-section li {
  list-style: disc;
  margin-bottom: 8px;
  color: #6a6a6a;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #F4EBE8;
}

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

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

.thank-you-hero .subtitle {
  font-size: 18px;
  color: #5D4A38;
}

.confirmation {
  padding: 60px 20px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #F4EBE8;
}

.step-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 2px;
  text-align: center;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #5D4A38;
}

.step-card p {
  margin-bottom: 24px;
  color: #6a6a6a;
}

.social-follow {
  padding: 60px 20px;
  text-align: center;
}

.return-home {
  padding: 40px 20px;
  text-align: center;
}

.return-home .btn {
  margin: 0 8px;
}

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

footer {
  background-color: #2c2c2c;
  color: #e8e8e8;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

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

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

.footer-bottom p {
  font-size: 13px;
  color: #8a8a8a;
}

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

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

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

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

.cookie-banner p {
  flex: 1 1 60%;
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

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

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

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

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

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

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

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

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #8B7355;
}

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

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

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

/* ===================================
   PRODUCT/SERVICE BENEFITS
   =================================== */

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

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

.faq {
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background-color: #fafafa;
  border-left: 3px solid #8B7355;
  border-radius: 2px;
}

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

.faq-item p {
  font-size: 15px;
  color: #6a6a6a;
  margin-bottom: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .hero h1 { font-size: 48px; }
  
  .value-item,
  .service-card,
  .product-card,
  .project-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .step {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Header */
  .header-content {
    padding: 16px 0;
  }
  
  /* Sections */
  .section { padding: 32px 16px; }
  .hero { padding: 60px 16px; }
  .hero-page { padding: 48px 16px 32px; }
  
  /* Buttons */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Grids - All become single column */
  .values-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .products-grid,
  .workshops-grid,
  .benefits-grid,
  .projects-grid,
  .seasons-grid,
  .contact-grid,
  .stats-grid,
  .location-details,
  .indicators-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .step,
  .testimonial-card,
  .product-card,
  .workshop-card,
  .benefit-item,
  .project-card,
  .season-card,
  .contact-card,
  .stat-item,
  .detail-block,
  .indicator,
  .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner p {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
  
  /* CTA Banner */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-banner .btn {
    width: 100%;
  }
  
  /* Contact Form */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Return Home Section */
  .return-home .btn {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  
  /* Container */
  .container { padding: 0 16px; }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Cards */
  .service-card,
  .product-card,
  .workshop-card,
  .project-card {
    padding: 24px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 100%;
  }
}

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

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

.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; }

/* ===================================
   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);
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
}