/* CSS Reset and 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', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* WARM FRIENDLY DESIGN STYLE - Warm colors, rounded corners, friendly fonts, soft shadows */

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #D2691E;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #D2691E;
}

h2 {
  font-size: 32px;
  color: #CD853F;
}

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

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #5D4E37;
}

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

a:hover {
  color: #D2691E;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #F4A460 0%, #CD853F 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0 0 20px 20px;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #FFF;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #F4A460 0%, #CD853F 100%);
  color: #FFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(210, 105, 30, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #F4A460 0%, #CD853F 100%);
  z-index: 1200;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  border: none;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(210, 105, 30, 0.15);
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  color: #D2691E;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.subheadline {
  font-size: 20px;
  color: #8B4513;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #F4A460 0%, #CD853F 100%);
  color: #FFF !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(210, 105, 30, 0.3);
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
}

.btn-secondary {
  background: #FFF;
  color: #CD853F;
  border: 3px solid #CD853F;
}

.btn-secondary:hover {
  background: #CD853F;
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(210, 105, 30, 0.3);
}

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

.trust-badge {
  font-size: 14px;
  color: #8B4513;
  margin-top: 24px;
  font-weight: 600;
}

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

.value-proposition,
.services-overview,
.process,
.testimonials,
.showroom-teaser,
.cta-banner,
.trust-signals,
.story,
.mission-vision,
.team,
.expertise,
.approach,
.references-intro,
.statistics,
.satisfaction-guarantee,
.services-intro,
.showroom-intro,
.showroom-areas,
.opening-hours,
.directions,
.consultation-intro,
.consultation-types,
.consultation-process,
.ideal-for,
.case-study,
.contact-options,
.office-location,
.team-contacts,
.business-hours,
.faq {
  background: #FFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.1);
  margin-bottom: 40px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #8B4513;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts - ONLY FLEXBOX */
.benefits-grid,
.services-grid,
.signals-grid,
.options-grid,
.formats-grid,
.areas-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item,
.service-card,
.signal,
.option,
.format,
.area,
.team-member,
.contact-person {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(210, 105, 30, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover,
.service-card:hover,
.signal:hover,
.option:hover,
.format:hover,
.area:hover,
.team-member:hover,
.contact-person:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
}

.service-card h3,
.benefit-item h3,
.option h3,
.format h3,
.area h3 {
  color: #D2691E;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #CD853F;
  margin-top: 16px;
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat,
.stats-grid .stat {
  text-align: center;
  flex: 1 1 200px;
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
}

.stat strong {
  display: block;
  font-size: 42px;
  color: #D2691E;
  margin-bottom: 8px;
  font-weight: 800;
}

.stat span {
  font-size: 16px;
  color: #8B4513;
  font-weight: 600;
}

/* Process Steps */
.process-steps,
.approach-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.approach-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.step:hover,
.approach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(210, 105, 30, 0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F4A460 0%, #CD853F 100%);
  color: #FFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
}

.timeline {
  text-align: center;
  font-size: 16px;
  color: #8B4513;
  margin-top: 32px;
  font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(210, 105, 30, 0.1);
  border-left: 5px solid #F4A460;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.2);
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: #5D4E37;
  line-height: 1.6;
}

.author {
  font-weight: 700;
  color: #CD853F;
  font-size: 16px;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #D2691E;
  margin-top: 32px;
  font-weight: 700;
}

/* Showroom Features */
.showroom-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
}

.feature,
.highlight,
.benefit,
.achievement,
.expertise-item {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 16px 24px;
  border-radius: 15px;
  font-weight: 600;
  color: #8B4513;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.1);
  transition: all 0.3s ease;
}

.feature:hover,
.highlight:hover,
.benefit:hover,
.achievement:hover,
.expertise-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
}

.address,
.hours,
.location {
  text-align: center;
  font-size: 18px;
  color: #8B4513;
  margin: 16px 0;
  font-weight: 600;
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #F4A460 0%, #CD853F 100%);
  color: #FFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(210, 105, 30, 0.3);
}

.cta-banner h2,
.cta-section h2 {
  color: #FFF;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-section p {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 24px;
}

.urgency {
  font-size: 16px;
  font-weight: 700;
  color: #FFE4B5;
  margin-top: 16px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.15);
}

.breadcrumb {
  font-size: 14px;
  color: #8B4513;
  margin-top: 16px;
}

.breadcrumb a {
  color: #CD853F;
  font-weight: 600;
}

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(210, 105, 30, 0.2);
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #D2691E;
  margin-bottom: 8px;
  font-weight: 800;
}

.milestone span {
  font-size: 16px;
  color: #8B4513;
}

/* Mission/Vision */
.mission,
.vision,
.values {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
}

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

.values li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #5D4E37;
  font-size: 16px;
}

.values li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A460;
  font-weight: 700;
  font-size: 20px;
}

/* Team Grid */
.team-grid,
.team-contacts .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.team-member,
.contact-person {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
}

.role {
  color: #CD853F;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Expertise List */
.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* Service Detailed */
.service-detailed {
  background: #FFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.1);
  margin-bottom: 40px;
}

.service-detailed h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-detailed ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.service-detailed li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #5D4E37;
  font-size: 16px;
}

.service-detailed li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A460;
  font-weight: 700;
  font-size: 20px;
}

/* Highlights Grid */
.highlights-grid,
.achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

/* Areas Grid */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.area {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
}

/* Directions Info */
.directions-info,
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.public-transport,
.car,
.address,
.hours {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
}

.public-transport ul,
.car ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.public-transport li,
.car li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #5D4E37;
}

.public-transport li:before,
.car li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F4A460;
  font-weight: 700;
}

/* Consultation Formats */
.formats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.format {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

/* Case Study */
.case-study {
  background: #FFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.1);
  margin-bottom: 40px;
  border-left: 8px solid #F4A460;
}

.client {
  font-style: italic;
  color: #8B4513;
  margin-bottom: 24px;
}

.investment {
  font-size: 20px;
  font-weight: 700;
  color: #CD853F;
  margin: 24px 0;
}

.testimonial {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 24px;
  border-radius: 15px;
  font-style: italic;
  color: #5D4E37;
  margin-top: 24px;
  border-left: 4px solid #F4A460;
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
}

.faq-item h3 {
  margin-bottom: 12px;
}

/* Legal Pages */
.legal-page {
  background: #FFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.1);
  margin: 40px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #D2691E;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #CD853F;
}

.last-updated {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-bottom: 32px;
}

/* Thank You Page */
.thank-you-page {
  background: #FFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.1);
  margin: 40px 0;
  text-align: center;
}

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

.success-message {
  font-size: 20px;
  color: #D2691E;
  font-weight: 600;
  margin: 24px 0;
}

.next-steps {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 32px;
  border-radius: 20px;
  margin: 32px 0;
  text-align: left;
}

.next-steps ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.next-steps li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #5D4E37;
}

.next-steps li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A460;
  font-weight: 700;
  font-size: 20px;
}

.contact-info {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: #FFF;
  padding: 60px 20px 24px;
  border-radius: 30px 30px 0 0;
  margin-top: 80px;
}

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

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

.footer-section h3 {
  color: #FFE4B5;
  margin-bottom: 20px;
  font-size: 20px;
}

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

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

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

.footer-nav a {
  color: #FFDAB9;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFF;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #FFDAB9;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 228, 181, 0.2);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: #FFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: #FFDAB9;
}
.cookie-text p {
  color: white;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: #F4A460;
  color: #FFF;
}

.cookie-accept:hover {
  background: #CD853F;
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  border: 2px solid #FFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-settings {
  background: transparent;
  color: #FFE4B5;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #FFF;
}

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

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

.cookie-modal-content {
  background: #FFF;
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.cookie-category {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #CD853F;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #F4A460;
}

.toggle-switch:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.toggle-switch.active:after {
  left: 27px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .services-overview,
  .process,
  .testimonials,
  .showroom-teaser,
  .cta-banner,
  .trust-signals,
  .service-detailed,
  .legal-page,
  .thank-you-page {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .signals-grid,
  .stats,
  .milestones,
  .team-grid,
  .options-grid,
  .formats-grid,
  .areas-grid,
  .directions-info,
  .location-info {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .signal,
  .stat,
  .milestone,
  .team-member,
  .option,
  .format,
  .area,
  .public-transport,
  .car,
  .approach-item,
  .contact-person {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.section {
  animation: fadeInUp 0.6s ease;
}

/* Ensure no overlapping */
.section + .section {
  margin-top: 20px;
}

/* Prevent content from overlapping with fixed elements */
body {
  padding-top: 0;
  padding-bottom: 0;
}

/* Smooth scrolling */
html {
  scroll-padding-top: 100px;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #F4A460;
  outline-offset: 2px;
}

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