/* 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', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 50%, #4ECDC4 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Playful Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2C3E50;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  animation: bounceIn 0.8s ease-out;
}

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

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

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #C0392B;
  transform: translateY(-2px);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #E74C3C;
  font-weight: 700;
}

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

/* Header Styles */
header {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FFE66D, #FF6B6B);
  color: #FFFFFF;
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B6B, #E74C3C);
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(231,76,60,0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.15) rotate(90deg);
  background: linear-gradient(135deg, #E74C3C, #C0392B);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #4ECDC4, #3498DB);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFFFFF;
  border: none;
  color: #E74C3C;
  font-size: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: scale(1.2) rotate(90deg);
  background: #FF6B6B;
  color: #FFFFFF;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 25px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: #FFFFFF;
  color: #E74C3C;
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  margin-bottom: 24px;
  font-size: 56px;
}

.hero-subheadline {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 32px;
  font-weight: 600;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E74C3C, #C0392B);
  color: #FFFFFF;
  box-shadow: 0 6px 25px rgba(231,76,60,0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(231,76,60,0.6);
}

.btn-secondary {
  background: #FFFFFF;
  color: #E74C3C;
  border-color: #E74C3C;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFE66D, #FFA500);
  color: #2C3E50;
  transform: translateY(-5px) scale(1.05);
  border-color: #FFA500;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-indicators span {
  background: rgba(255,255,255,0.95);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  color: #2C3E50;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
}

.trust-indicators span:nth-child(2) {
  animation-delay: 0.5s;
}

.trust-indicators span:nth-child(3) {
  animation-delay: 1s;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.services-overview,
.value-proposition,
.process-steps,
.testimonials,
.cta-urgency,
.services-detailed,
.included-benefits,
.cta-section,
.company-story,
.mission-vision,
.success-metrics,
.process-overview,
.detailed-steps,
.immediate-actions,
.faq-content,
.contact-methods,
.office-hours,
.office-location,
.legal-content {
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  animation: fadeIn 0.8s ease-out;
}

/* Services Grid */
.services-grid,
.benefits-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.service-card,
.benefit,
.method {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid transparent;
}

.service-card:hover,
.benefit:hover,
.method:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 45px rgba(0,0,0,0.25);
  border-color: #FF6B6B;
  background: linear-gradient(135deg, #FFE66D, #FFA500);
}

.service-card h3,
.benefit h3,
.method h3 {
  color: #E74C3C;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.benefit p,
.method p {
  color: #555;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: #3498DB;
  margin: 20px 0;
  display: block;
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #4ECDC4, #3498DB);
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(52,152,219,0.5);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  color: #E74C3C;
  border-radius: 50%;
  line-height: 60px;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: bounce 2s infinite;
}

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

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFBF0;
  padding: 30px;
  border-radius: 20px;
  border-left: 6px solid #FFA500;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 35px rgba(255,165,0,0.3);
  background: linear-gradient(135deg, #FFFBF0, #FFE66D);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #E74C3C;
  font-style: normal;
  font-size: 15px;
}

.stats-bar {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #3498DB, #2980B9);
  border-radius: 20px;
}

.stats-bar span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

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

.milestone,
.metric {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #FF6B6B, #E74C3C);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(231,76,60,0.3);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.milestone:hover,
.metric:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 12px 40px rgba(231,76,60,0.5);
}

.milestone h3,
.metric h3 {
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.milestone p,
.metric p {
  color: #F0F0F0;
  font-weight: 600;
  font-size: 16px;
}

/* Service Detail */
.service-detail {
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #FFFFFF, #F0F0F0);
  border-radius: 20px;
  border-left: 6px solid #4ECDC4;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(78,205,196,0.3);
  border-left-width: 12px;
}

.service-detail h2 {
  color: #3498DB;
  margin-bottom: 16px;
}

/* Step Detail */
.step-detail {
  margin-bottom: 40px;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 3px solid #FFE66D;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step-detail:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(255,230,109,0.4);
  border-color: #FFA500;
}

.step-detail h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #E74C3C;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.step-detail .step-number {
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF6B6B, #E74C3C);
  color: #FFFFFF;
}

/* FAQ */
.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  color: #3498DB;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 4px solid #FFE66D;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
  border-radius: 15px;
  border-left: 5px solid #4ECDC4;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(78,205,196,0.2);
  border-left-width: 10px;
}

.faq-item h3 {
  color: #E74C3C;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 24px 0;
}

.checklist li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  background: #FFFFFF;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.checklist li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, #FFE66D, #FFA500);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #4ECDC4;
  font-weight: 900;
  font-size: 20px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #4ECDC4, #3498DB);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.page-header h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  font-size: 48px;
}

.page-header p {
  color: #F0F0F0;
  font-size: 18px;
  font-weight: 600;
}

/* Legal Pages */
.legal-header {
  background: linear-gradient(135deg, #2C3E50, #34495E);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-header h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.legal-header p {
  color: #ECF0F1;
  font-size: 16px;
}

.legal-content {
  padding: 40px 30px;
  line-height: 1.9;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 3px solid #FFE66D;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #4ECDC4, #3498DB);
  border-radius: 30px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  color: #4ECDC4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: successPop 0.6s ease-out;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: #F0F0F0;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Actions Grid */
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.action {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  padding: 30px;
  background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.action:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #FFE66D, #FFA500);
}

.action h3 {
  color: #E74C3C;
  margin-bottom: 16px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2C3E50, #34495E);
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

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

.footer-section p,
.footer-section a {
  color: #ECF0F1;
  line-height: 1.8;
  font-size: 15px;
}

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

.footer-nav a:hover {
  color: #FFE66D;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255,255,255,0.2);
  color: #BDC3C7;
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50, #34495E);
  padding: 24px;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FFE66D;
}

#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-content p {
  color: #FFFFFF;
  margin: 0;
  flex: 1 1 400px;
}

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

.cookie-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background: linear-gradient(135deg, #4ECDC4, #3498DB);
  color: #FFFFFF;
}

#accept-cookies:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(78,205,196,0.4);
}

#reject-cookies {
  background: #E74C3C;
  color: #FFFFFF;
}

#reject-cookies:hover {
  transform: scale(1.1);
  background: #C0392B;
}

#cookie-settings {
  background: transparent;
  color: #FFE66D;
  border: 2px solid #FFE66D;
}

#cookie-settings:hover {
  background: #FFE66D;
  color: #2C3E50;
  transform: scale(1.1);
}

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

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

.modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 60px rgba(0,0,0,0.5);
  animation: modalSlideIn 0.4s ease-out;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 15px;
  border-left: 4px solid #4ECDC4;
}

.cookie-category h3 {
  color: #3498DB;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: #CCC;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #4ECDC4;
}

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

.cookie-toggle.active::after {
  left: 33px;
}

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

.modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.modal-buttons button {
  flex: 1;
  min-width: 150px;
}

/* Text-Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

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

@keyframes successPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .service-card,
  .benefit,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide main navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
  }
  
  /* Full width cards */
  .service-card,
  .benefit,
  .testimonial-card,
  .step,
  .milestone,
  .metric,
  .action,
  .method {
    flex: 1 1 100%;
  }
  
  /* Footer sections stack */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent adjustments */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
  
  /* Page header */
  .page-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  section {
    padding: 30px 15px;
  }
}