/* 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: #2C2C2C;
  background: linear-gradient(135deg, #F5F5F0 0%, #FFFFFF 100%);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1E3A5F;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #C9A961;
}

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

li {
  margin-bottom: 8px;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  transform: translateY(-2px);
}

.cta-button {
  background: linear-gradient(135deg, #C9A961 0%, #D4B978 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  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: white;
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  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: white;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 50%, #1E3A5F 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(201, 169, 97, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 24px;
}

.subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #D4B978 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
  color: #F5F5F0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #1E3A5F;
  transform: translateY(-3px);
}

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

/* Hero Internal */
.hero-internal {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.hero-internal h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A961 0%, #D4B978 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
}

.service-card h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

.service-card a {
  color: #1E3A5F;
  font-weight: 600;
  margin-top: auto;
  padding-top: 16px;
}

.service-card a:hover {
  color: #C9A961;
}

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

.benefit {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #F5F5F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border-left: 4px solid #C9A961;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #1E3A5F;
  font-weight: 600;
  font-style: normal;
  margin-top: auto;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #C9A961;
  margin-top: 20px;
}

/* Service Detail */
.service-detail {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  margin-bottom: 32px;
}

.service-detail h2 {
  color: #1E3A5F;
  margin-bottom: 20px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-detail li {
  margin-bottom: 12px;
  position: relative;
}

.use-cases {
  background: linear-gradient(135deg, #F5F5F0 0%, #FFFFFF 100%);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 600;
  color: #1E3A5F;
}

/* CTA Sections */
.cta-final, .cta-contact, .cta-trust, .cta-consultation, .cta-contact, .faq-cta {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 0;
}

.cta-final h2, .cta-contact h2, .cta-trust h2, .cta-consultation h2, .faq-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-final p, .cta-contact p, .cta-trust p, .cta-consultation p, .faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.availability {
  margin-top: 24px;
  font-size: 14px;
  color: #C9A961;
}

/* Pricing Table */
.price-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  margin: 40px 0;
}

.price-table thead {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
}

.price-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.price-table td {
  padding: 16px;
  border-bottom: 1px solid #E5E5E5;
}

.price-table tr:hover {
  background: #F5F5F0;
}

.pricing-category {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  margin-bottom: 24px;
}

.pricing-category h3 {
  color: #1E3A5F;
  margin-bottom: 20px;
}

.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 20px;
}

/* FAQ Section */
.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(30, 58, 95, 0.15);
}

.faq-item h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.contact-option {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
}

.contact-option h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.form-placeholder {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  text-align: center;
  margin: 40px 0;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #666;
}

/* Opening Hours Table */
.opening-hours table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.opening-hours td {
  padding: 16px;
  border-bottom: 1px solid #E5E5E5;
}

.opening-hours tr:last-child td {
  border-bottom: none;
}

/* Legal Pages */
.legal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  margin: 40px 0;
}

.legal-content h2 {
  color: #1E3A5F;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.last-updated {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.legal-links {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #E5E5E5;
}

.legal-links a {
  display: block;
  margin-bottom: 12px;
  color: #1E3A5F;
  font-weight: 600;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C9A961 0%, #D4B978 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.confirmation {
  color: #C9A961;
  font-weight: 600;
  margin-top: 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
}

.step strong {
  color: #C9A961;
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.links-grid a {
  background: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.links-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(30, 58, 95, 0.15);
}

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

.stat {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
}

.stat strong {
  display: block;
  font-size: 48px;
  background: linear-gradient(135deg, #1E3A5F 0%, #C9A961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.milestone {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  border-left: 4px solid #C9A961;
}

.milestone strong {
  color: #1E3A5F;
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

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

.value {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
}

.value h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #C9A961;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A5F 0%, #2B5A8F 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

#cookie-consent-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1 1 300px;
}

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

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

#accept-cookies {
  background: linear-gradient(135deg, #C9A961 0%, #D4B978 100%);
  color: white;
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

#reject-cookies {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.3);
}

#cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

#cookie-settings:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

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

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

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

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

.cookie-category {
  padding: 20px;
  background: #F5F5F0;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 600;
  cursor: pointer;
}

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

.modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 auto;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #C9A961 0%, #D4B978 100%);
  color: white;
}

#save-cookie-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

#close-cookie-modal {
  background: #E5E5E5;
  color: #2C2C2C;
}

#close-cookie-modal:hover {
  background: #D0D0D0;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .cta-button {
    display: none;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .benefits-grid,
  .testimonial-grid,
  .contact-grid,
  .stats-grid,
  .milestones,
  .values-grid {
    flex-direction: column;
  }
  
  .benefit,
  .testimonial-card,
  .contact-option,
  .stat,
  .milestone,
  .value {
    flex: 1 1 100%;
  }
  
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  #cookie-consent-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
  
  .price-table {
    font-size: 14px;
  }
  
  .price-table th,
  .price-table td {
    padding: 12px 8px;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .links-grid {
    flex-direction: column;
  }
  
  .links-grid a {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.service-card,
.benefit,
.testimonial-card,
.faq-item {
  animation: fadeIn 0.6s ease forwards;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal,
  header nav,
  .cta-button,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .hero,
  .hero-internal,
  .cta-final,
  .cta-contact,
  .cta-trust {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4 {
    color: black;
    background: none;
    -webkit-text-fill-color: black;
  }
}