/* =================================================================
   AutoExpert Stuttgart - Scandinavian Clean Design
   Modern, Professional, Trustworthy
   ================================================================= */

/* 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', sans-serif;
  line-height: 1.7;
  color: #2D3748;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

h1 { font-size: 48px; }
h2 { font-size: 32px; margin-bottom: 24px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { margin-bottom: 16px; }

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

a:hover {
  color: #F6AD55;
}

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: #1A365D;
  color: #FFFFFF;
  border-color: #1A365D;
}

.btn-primary:hover {
  background-color: #2C5282;
  border-color: #2C5282;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1A365D;
  border-color: #1A365D;
}

.btn-secondary:hover {
  background-color: #1A365D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* Header */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2D3748;
  position: relative;
  padding: 8px 0;
}

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

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

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  background-color: #1A365D;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C5282;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2D3748;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: #1A365D;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-indicators span {
  font-size: 15px;
  color: #2D3748;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Internal Hero */
.hero-internal {
  background-color: #F7FAFC;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 2px solid #E2E8F0;
}

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

.hero-internal p {
  font-size: 18px;
  color: #4A5568;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #718096;
}

.breadcrumb a {
  color: #2C5282;
}

.breadcrumb a:hover {
  color: #F6AD55;
}

/* Sections */
.section,
.problem-solution,
.services-overview,
.process-steps,
.testimonials,
.cta-final,
.services-detailed,
.cta-services,
.company-story,
.team,
.values,
.statistics,
.pricing-table,
.premium-package,
.process-overview,
.step-detail,
.contact-methods,
.contact-form-section,
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* Problem Solution Section */
.problem-solution {
  background-color: #FFFFFF;
}

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

.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.problem,
.solution {
  flex: 1;
  min-width: 300px;
  padding: 32px;
  border-radius: 8px;
  background-color: #F7FAFC;
}

.problem {
  border-left: 4px solid #F6AD55;
}

.solution {
  border-left: 4px solid #1A365D;
}

.solution ul {
  margin-top: 24px;
}

.solution ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  color: #2D3748;
}

.solution ul li:last-child {
  border-bottom: none;
}

/* Services Grid */
.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.service-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #F6AD55;
  margin: 16px 0;
}

.service-card.featured {
  border: 3px solid #F6AD55;
  background: linear-gradient(135deg, #FFFAF0 0%, #FFFFFF 100%);
}

.service-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* Service Detail */
.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.service-detail h2 {
  color: #1A365D;
  margin-bottom: 24px;
}

.service-detail h3 {
  color: #2C5282;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 16px 0;
}

.service-detail ul li {
  padding: 12px 0 12px 24px;
  color: #2D3748;
  position: relative;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F6AD55;
  font-weight: 700;
}

.badge {
  display: inline-block;
  background-color: #F6AD55;
  color: #1A365D;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  background-color: #EDF2F7;
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #1A365D;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #4A5568;
  font-size: 15px;
}

/* Step Detail */
.step-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.step-badge {
  display: inline-block;
  background-color: #1A365D;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Testimonials */
.testimonials {
  background-color: #F7FAFC;
}

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

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card .rating {
  color: #F6AD55;
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #1A365D;
  font-weight: 600;
  font-size: 15px;
}

.trust-badge {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1A365D;
}

/* CTA Sections */
.cta-final,
.cta-services,
.cta-about,
.cta-process,
.cta-pricing,
.cta-contact {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
}

.cta-final h2,
.cta-services h2,
.cta-about h2,
.cta-process h2,
.cta-pricing h2,
.cta-contact h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 24px;
}

.cta-final p,
.cta-services p,
.cta-about p,
.cta-process p,
.cta-pricing p,
.cta-contact p {
  color: #E2E8F0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background-color: #F6AD55;
  border-color: #F6AD55;
  color: #1A365D;
}

.cta-buttons .btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #1A365D;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1A365D;
}

.availability,
.reassurance {
  color: #CBD5E0;
  font-size: 15px;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.team-member h3 {
  color: #1A365D;
  font-size: 22px;
  margin-bottom: 8px;
}

.team-member p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

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

.value-item {
  flex: 1;
  min-width: 250px;
  padding: 32px;
  background-color: #F7FAFC;
  border-radius: 8px;
  border-left: 4px solid #F6AD55;
}

.value-item h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.value-item p {
  color: #4A5568;
}

/* Statistics */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #F6AD55;
  margin-bottom: 8px;
}

.stat p {
  font-size: 18px;
  color: #2D3748;
  font-weight: 500;
}

/* Pricing */
.pricing-philosophy {
  background-color: #F7FAFC;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-philosophy .note {
  color: #4A5568;
  font-style: italic;
  font-size: 15px;
}

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

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.pricing-card h3 {
  color: #1A365D;
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #F6AD55;
  margin: 24px 0;
}

.pricing-card ul {
  margin: 24px 0;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 12px 0;
  color: #2D3748;
  border-bottom: 1px solid #E2E8F0;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* Premium Package */
.package-highlight {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  border: 3px solid #F6AD55;
  text-align: center;
}

.price-large {
  font-size: 56px;
  font-weight: 700;
  color: #F6AD55;
  margin: 24px 0;
}

.price-crossed {
  font-size: 24px;
  color: #718096;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.savings {
  font-size: 20px;
  color: #48BB78;
  font-weight: 600;
  margin-bottom: 32px;
}

.package-highlight ul {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
}

.package-highlight ul li {
  padding: 12px 0 12px 32px;
  color: #2D3748;
  font-size: 16px;
  position: relative;
}

.package-highlight ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #48BB78;
  font-weight: 700;
  font-size: 20px;
}

.guarantee {
  margin-top: 24px;
  font-size: 16px;
  color: #48BB78;
  font-weight: 600;
}

/* Additional Costs */
.additional-costs {
  background-color: #F7FAFC;
  padding: 40px;
  border-radius: 8px;
}

.additional-costs ul li {
  padding: 16px;
  background-color: #FFFFFF;
  margin-bottom: 12px;
  border-radius: 6px;
  color: #2D3748;
  border-left: 3px solid #E2E8F0;
}

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

.contact-method {
  flex: 1;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-method h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.contact-method p {
  color: #4A5568;
  margin-bottom: 12px;
}

.contact-method a {
  color: #2C5282;
  font-weight: 600;
}

/* Form Note */
.form-note {
  background-color: #FFF5E5;
  border-left: 4px solid #F6AD55;
  padding: 24px;
  border-radius: 6px;
  max-width: 700px;
  margin: 0 auto;
}

.form-note p {
  color: #2D3748;
  margin-bottom: 12px;
}

/* Office Location */
.location-info {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.location-info h3 {
  color: #1A365D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.location-info p {
  color: #4A5568;
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #48BB78;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 60px;
  line-height: 100px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.thank-you-content h1 {
  color: #1A365D;
  margin-bottom: 24px;
}

.confirmation {
  color: #4A5568;
  font-style: italic;
}

.immediate-contact {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.phone-large {
  font-size: 32px;
  font-weight: 700;
  margin: 24px 0;
}

.phone-large a {
  color: #1A365D;
}

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

.resource {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.resource h3 {
  color: #1A365D;
  margin-bottom: 20px;
}

.social-proof {
  background-color: #F7FAFC;
  padding: 40px 20px;
  text-align: center;
}

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

.return-navigation .btn {
  margin: 0 10px;
}

/* Legal Content */
.legal-hero {
  background-color: #F7FAFC;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #E2E8F0;
}

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

.legal-content h2 {
  color: #1A365D;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content ul li {
  color: #4A5568;
  padding: 8px 0;
  list-style: disc;
}

/* Footer */
footer {
  background-color: #1A365D;
  color: #E2E8F0;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

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

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

.footer-section p {
  color: #CBD5E0;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

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

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  color: #2D3748;
  font-size: 15px;
  margin-bottom: 0;
}

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

.cookie-banner .btn {
  padding: 10px 20px;
  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.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

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

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

.cookie-modal-content h2 {
  color: #1A365D;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #F7FAFC;
  border-radius: 6px;
  margin-bottom: 16px;
}

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

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

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

.cookie-toggle.active {
  background-color: #48BB78;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subheadline { font-size: 18px; }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Sections */
  .content-wrapper {
    flex-direction: column;
  }
  
  .problem,
  .solution {
    min-width: 100%;
  }
  
  /* Services */
  .services-grid,
  .pricing-grid {
    flex-direction: column;
  }
  
  .service-card,
  .pricing-card {
    max-width: 100%;
  }
  
  /* Steps */
  .steps,
  .steps-overview {
    flex-direction: column;
  }
  
  /* Team */
  .team-grid {
    flex-direction: column;
  }
  
  /* Values */
  .values-grid {
    flex-direction: column;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  /* Contact */
  .contact-grid {
    flex-direction: column;
  }
  
  /* Resources */
  .resources-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-banner-buttons .btn {
    width: 100%;
  }
  
  /* Package Highlight */
  .package-highlight {
    padding: 40px 24px;
  }
  
  .price-large {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero h1 { font-size: 30px; }
  
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  /* Hero */
  .hero,
  .hero-internal {
    padding: 40px 16px;
  }
  
  /* Sections */
  .section,
  .problem-solution,
  .services-overview,
  .process-steps,
  .testimonials,
  .cta-final {
    padding: 32px 16px;
  }
  
  /* Cards */
  .service-card,
  .testimonial-card,
  .team-member,
  .pricing-card {
    padding: 24px;
  }
  
  /* Step Number */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 40px;
  }
  
  /* Package */
  .price-large {
    font-size: 36px;
  }
  
  /* Phone */
  .phone-large {
    font-size: 24px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

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