/* 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: #2D3748;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F5E9 50%, #FFF9E6 100%);
  overflow-x: hidden;
}

/* Soft Pastel Color Palette */
:root {
  --pastel-pink: #FFB3C6;
  --pastel-lavender: #D4B5E8;
  --pastel-mint: #B5E8D4;
  --pastel-peach: #FFD4B3;
  --pastel-blue: #B3D9FF;
  --pastel-yellow: #FFF4B3;
  --soft-white: #FFFBF7;
  --text-dark: #5A4A6A;
  --text-medium: #7A6A8A;
  --text-light: #9A8AAA;
}

/* Typography - Soft and Dreamy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-medium);
  font-size: 16px;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 12px;
  color: var(--text-medium);
  padding-left: 24px;
  position: relative;
}

li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pastel-lavender);
  font-size: 14px;
}

a {
  color: var(--pastel-lavender);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--pastel-pink);
  transform: translateY(-1px);
}

strong {
  font-weight: 600;
  color: var(--text-dark);
}

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

/* Header - Dreamy and Soft */
header {
  background: linear-gradient(135deg, var(--soft-white) 0%, #FFF5F9 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

header img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05) rotate(2deg);
}

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

header nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
}

header nav a:hover {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 181, 232, 0.4);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 179, 198, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 179, 198, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--soft-white) 0%, #FFF5F9 100%);
  box-shadow: -4px 0 30px rgba(212, 181, 232, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(255, 179, 198, 0.3);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--pastel-lavender);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 249, 0.9) 100%);
  box-shadow: 0 2px 10px rgba(212, 181, 232, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.3);
}

/* Buttons - Soft and Inviting */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 6px 25px rgba(255, 179, 198, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 179, 198, 0.5);
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
  color: white;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  border-color: var(--pastel-mint);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(181, 232, 212, 0.4);
}

/* Hero Section - Dreamy and Ethereal */
.hero {
  background: linear-gradient(135deg, #FFF5F9 0%, #F0E8FF 50%, #E8F5FF 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 179, 198, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--text-dark);
  text-shadow: 2px 2px 4px rgba(212, 181, 232, 0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--text-medium);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badge {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(212, 181, 232, 0.15);
}

/* Page Hero - Soft Variant */
.page-hero {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-yellow) 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 8px 30px rgba(255, 212, 179, 0.3);
}

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

.page-hero p {
  font-size: 18px;
  color: var(--text-medium);
}

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

.value-proposition,
.services-overview,
.services-intro,
.methodology-intro,
.mission,
.story,
.success-stories,
.contact-intro {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.value-proposition {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 249, 230, 0.8) 100%);
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(212, 181, 232, 0.15);
  text-align: center;
}

.value-proposition h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

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

/* Service Grid - Flexbox Layout */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 249, 0.9) 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  border-radius: 25px 25px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(212, 181, 232, 0.35);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 16px;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--pastel-pink);
  margin: 16px 0;
}

/* Service Detail Cards */
.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-detail {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 232, 255, 0.9) 100%);
  padding: 40px;
  border-radius: 25px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 181, 232, 0.3);
}

.service-detail h3 {
  font-size: 28px;
  color: var(--text-dark);
}

.service-detail .tagline {
  color: var(--pastel-lavender);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--pastel-pink);
}

.service-detail .duration {
  color: var(--text-light);
  font-size: 14px;
}

/* Testimonials - Soft and Welcoming */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 249, 230, 0.6) 0%, rgba(232, 245, 233, 0.6) 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 48px;
  color: var(--pastel-lavender);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(212, 181, 232, 0.25);
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  padding-left: 32px;
}

.testimonial-card p:last-child {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.testimonial-card strong {
  color: var(--pastel-pink);
}

/* Testimonials Grid */
.testimonials-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials-grid h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* Stats Section - Pastel and Playful */
.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-mint) 100%);
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(179, 217, 255, 0.3);
}

.stats .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  align-items: center;
}

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

.stat-item h3 {
  font-size: 56px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* CTA Section - Gentle and Encouraging */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-peach) 100%);
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(255, 179, 198, 0.3);
}

.cta-section h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: white;
  color: var(--pastel-pink);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
  background: var(--soft-white);
  color: var(--pastel-lavender);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.guarantee {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

/* Methodology Sections */
.methodology-pillars,
.teaching-methods,
.values {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pillar,
.value-grid > div {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 249, 230, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.15);
  transition: all 0.3s ease;
}

.pillar:hover,
.value-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(212, 181, 232, 0.25);
}

.pillar h3,
.value-grid > div h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--pastel-lavender);
}

.teaching-methods ul {
  max-width: 800px;
  margin: 0 auto;
}

.teaching-methods li {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(212, 181, 232, 0.1);
}

/* Success Stories */
.story {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 245, 255, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(179, 217, 255, 0.2);
  border-left: 4px solid var(--pastel-blue);
}

.story h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.story .position {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
}

/* Contact Methods */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-methods .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 249, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.method:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(212, 181, 232, 0.25);
}

.method h3 {
  font-size: 24px;
  color: var(--pastel-lavender);
  margin-bottom: 12px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(255, 249, 230, 0.6) 0%, rgba(240, 232, 255, 0.6) 100%);
  border-radius: 30px;
}

.form-placeholder {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.2);
  max-width: 600px;
  margin: 32px auto;
}

.form-placeholder p {
  background: rgba(255, 249, 230, 0.5);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  color: var(--text-medium);
  font-size: 14px;
}

/* Location and Opening Hours */
.location,
.opening-hours {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.phone-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--pastel-pink);
  margin: 24px 0;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--pastel-lavender);
}

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

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--pastel-mint);
  margin: 0 auto 24px auto;
  box-shadow: 0 6px 25px rgba(181, 232, 212, 0.3);
}

.thank-you-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 16px;
}

.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 244, 179, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(255, 244, 179, 0.2);
  position: relative;
  padding-left: 48px;
}

.step h3::before {
  content: attr(data-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: var(--pastel-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-dark);
}

.explore-further,
.contact-reminder {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.link-grid > div {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 232, 255, 0.9) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(212, 181, 232, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.link-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(212, 181, 232, 0.25);
}

.link-grid h3 a {
  color: var(--pastel-lavender);
  font-size: 22px;
}

/* Footer - Soft and Informative */
footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 249, 0.95) 100%);
  padding: 60px 20px 32px 20px;
  margin-top: 60px;
  border-top: 4px solid var(--pastel-lavender);
}

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

.footer-content > div {
  flex: 1 1 300px;
}

footer h4 {
  font-size: 18px;
  color: var(--pastel-lavender);
  margin-bottom: 16px;
  font-weight: 600;
}

footer p,
footer nav a {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

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

footer nav a:hover {
  color: var(--pastel-pink);
  padding-left: 4px;
}

footer > .container > p:last-child {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 181, 232, 0.3);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 249, 0.98) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(212, 181, 232, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin-bottom: 0;
  color: var(--text-medium);
  font-size: 14px;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  color: white;
  box-shadow: 0 3px 15px rgba(181, 232, 212, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(181, 232, 212, 0.4);
}

.cookie-reject {
  background: rgba(255, 179, 198, 0.2);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background: rgba(255, 179, 198, 0.4);
}

.cookie-settings {
  background: transparent;
  color: var(--pastel-lavender);
  border: 1px solid var(--pastel-lavender);
}

.cookie-settings:hover {
  background: var(--pastel-lavender);
  color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 74, 106, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, var(--soft-white) 0%, #FFF5F9 100%);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(212, 181, 232, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pastel-pink);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-lavender);
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.cookie-toggle {
  flex-shrink: 0;
  width: 50px;
  height: 28px;
  background: rgba(212, 181, 232, 0.3);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--pastel-mint);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-save {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 179, 198, 0.4);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  header nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Button adjustments */
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  /* Service grid adjustments */
  .service-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  /* Stats layout */
  .stats .container {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-item h3 {
    font-size: 48px;
  }
  
  /* Footer layout */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Link grid mobile */
  .link-grid {
    flex-direction: column;
  }
  
  .link-grid > div {
    flex: 1 1 100%;
  }
  
  /* Contact methods mobile */
  .contact-methods .container {
    gap: 20px;
  }
  
  /* Modal mobile adjustments */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
}

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

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

.service-card,
.testimonial-card,
.pillar,
.method,
.story {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--pastel-lavender);
  outline-offset: 4px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}