/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background: linear-gradient(135deg, #FFE5F0 0%, #FFF8E1 50%, #E0F7FF 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Playful Dynamic Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0066CC;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(255, 184, 28, 0.2);
}

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

h2 {
  font-size: 32px;
  color: #FF6B9D;
  transform: rotate(-1deg);
}

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

h4 {
  font-size: 18px;
}

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

a {
  color: #0066CC;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

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

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

li {
  margin-bottom: 8px;
}

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

/* Bouncy Animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-5deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
  70% {
    transform: scale(0.9) rotate(-1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FF6B9D 0%, #FFB81C 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B9D 0%, #FFB81C 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
  animation: slideInRight 0.4s ease-out;
}

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

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FFB81C;
  color: white;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mobile-nav a {
  color: white;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-nav a:hover {
  background: white;
  color: #FF6B9D;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Header */
header {
  background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideInRight 0.6s ease-out;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo {
  animation: wiggle 3s infinite;
}

.logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu a:hover {
  background: linear-gradient(135deg, #FFB81C 0%, #FF6B9D 100%);
  color: white;
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(255, 184, 28, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FF6B9D 0%, #FFB81C 50%, #00A3E0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(255, 107, 157, 0.3);
}

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

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.8s ease-out;
}

.subheadline {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: wiggle 0.5s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FFB81C 0%, #FF6B9D 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6B9D 0%, #FFB81C 100%);
}

.btn-secondary {
  background: white;
  color: #0066CC;
  border: 3px solid #0066CC;
}

.btn-secondary:hover {
  background: #0066CC;
  color: white;
  border-color: #0066CC;
}

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  transform: scale(1.1) rotate(-2deg);
  background: rgba(255, 255, 255, 0.3);
}

/* Benefits Section */
.benefits {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 30px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  color: #FF6B9D;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px;
  background: linear-gradient(135deg, white 0%, #FFF8E1 100%);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
  border-color: #FFB81C;
}

.benefit-card h3 {
  color: #0066CC;
  font-size: 22px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.6;
}

/* Services Section */
.services {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #E0F7FF 0%, #FFE5F0 100%);
  border-radius: 50px;
  position: relative;
}

.services h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  color: #00A3E0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 163, 224, 0.2);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid #00A3E0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 163, 224, 0.4);
  background: linear-gradient(135deg, white 0%, #E0F7FF 100%);
}

.service-card h3 {
  color: #0066CC;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: #2D3748;
  font-size: 15px;
  flex-grow: 1;
}

.service-card .price {
  color: #FF6B9D;
  font-weight: 800;
  font-size: 24px;
  margin-top: 16px;
}

.services > .container > .btn {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* Product Grid */
.products {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 32px;
  background: linear-gradient(135deg, white 0%, #FFF8E1 100%);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(255, 184, 28, 0.2);
  flex: 1 1 calc(25% - 18px);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid #FFB81C;
}

.product-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 184, 28, 0.4);
}

.product-card h3 {
  color: #0066CC;
  font-size: 20px;
  margin-bottom: 12px;
}

.product-card p {
  color: #2D3748;
  font-size: 14px;
  line-height: 1.5;
}

.product-card .price {
  color: #FF6B9D;
  font-weight: 800;
  font-size: 28px;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Testimonials Section */
.testimonials {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5F0 0%, #FFF8E1 100%);
  border-radius: 50px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  color: #FF6B9D;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: white;
  border-radius: 25px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  border: 3px solid #FF6B9D;
}

.testimonial-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2D3748;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card cite {
  color: #0066CC;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}

/* Final CTA Section */
.final-cta {
  margin-bottom: 60px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
}

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

.final-cta p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
}

.final-cta .contact-info {
  color: white;
  font-size: 16px;
  margin-top: 24px;
  opacity: 0.9;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #00A3E0 0%, #0066CC 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(0, 163, 224, 0.3);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: white;
}

.breadcrumbs a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: 1;
  text-decoration: underline;
}

.page-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  color: white;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.usp {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.usp span {
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.usp span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Features Section */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #FFB81C;
}

.features li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(255, 184, 28, 0.3);
}

/* Warranty Section */
.warranty {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #E0F7FF 0%, white 100%);
  border-radius: 30px;
  text-align: center;
}

.warranty h2 {
  margin-bottom: 24px;
  font-size: 36px;
  color: #0066CC;
}

.warranty p {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* CTA Section */
.cta {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFB81C 0%, #FF6B9D 100%);
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(255, 184, 28, 0.3);
}

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

.cta p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 32px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(255, 184, 28, 0.2);
  flex: 1 1 calc(25% - 18px);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid #FFB81C;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 184, 28, 0.4);
}

.package-card h3 {
  color: #0066CC;
  font-size: 22px;
  margin-bottom: 12px;
}

.package-card p {
  color: #2D3748;
  font-size: 15px;
}

.package-card .price {
  color: #FF6B9D;
  font-weight: 800;
  font-size: 28px;
  margin-top: 16px;
  margin-bottom: 8px;
}

/* Rental Process */
.rental-process {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.rental-process h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 36px;
}

.rental-process ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step-counter;
}

.rental-process li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, white 0%, #FFF8E1 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  counter-increment: step-counter;
  border: 2px solid #00A3E0;
}

.rental-process li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFB81C 0%, #FF6B9D 100%);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}

.rental-process li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.3);
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px;
  background: linear-gradient(135deg, white 0%, #E0F7FF 100%);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 163, 224, 0.2);
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid #00A3E0;
}

.stat-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(0, 163, 224, 0.4);
}

.stat-card h3 {
  color: #FF6B9D;
  font-size: 48px;
  margin-bottom: 8px;
  font-weight: 900;
}

.stat-card p {
  color: #2D3748;
  font-size: 16px;
  font-weight: 600;
}

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

.method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid #0066CC;
}

.method:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.method h3 {
  color: #0066CC;
  font-size: 24px;
  margin-bottom: 12px;
}

.method p {
  color: #2D3748;
  font-size: 16px;
}

/* Form Placeholder */
.form-placeholder {
  padding: 40px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 3px dashed #FFB81C;
}

.form-placeholder ul {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

/* Legal Content */
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 28px;
  color: #0066CC;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content dl {
  margin-bottom: 24px;
}

.legal-content dt {
  font-weight: 700;
  color: #0066CC;
  margin-top: 16px;
  font-size: 18px;
}

.legal-content dd {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #2D3748;
}

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

.checkmark {
  width: 80px;
  height: 80px;
  background: white;
  color: #FFB81C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: bounceIn 0.8s ease-out;
}

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

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

.confirmation {
  background: rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 25px;
  display: inline-block;
  font-weight: 700;
}

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

.next-steps ol {
  max-width: 700px;
  margin: 0 auto;
}

.nav-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
  color: white;
  padding: 60px 20px 24px;
  margin-top: 60px;
  border-radius: 50px 50px 0 0;
}

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

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

.footer-section h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
  padding: 24px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 30px 30px 0 0;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: white;
  font-size: 15px;
  line-height: 1.6;
}

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

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

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

#accept-cookies:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 184, 28, 0.4);
}

#reject-cookies {
  background: white;
  color: #0066CC;
}

#reject-cookies:hover {
  background: #FFB81C;
  color: white;
}

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

#cookie-settings:hover {
  background: white;
  color: #0066CC;
}

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

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

.modal-content {
  background: white;
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: bounceIn 0.5s ease-out;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B9D;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FFB81C;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF8E1 0%, white 100%);
  border-radius: 20px;
  border: 2px solid #FFB81C;
}

.cookie-category h3 {
  color: #0066CC;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category p {
  color: #2D3748;
  font-size: 14px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #FFB81C 0%, #FF6B9D 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .subheadline {
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Grid layouts to single column */
  .benefits-grid,
  .services-grid,
  .product-grid,
  .package-grid,
  .stats-grid,
  .contact-methods {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .product-card,
  .package-card,
  .stat-card,
  .method {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  /* Navigation options */
  .nav-options {
    flex-direction: column;
  }

  /* Modal adjustments */
  .modal-content {
    padding: 24px;
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }

  .mobile-menu {
    max-width: 100%;
  }

  .mobile-nav a {
    font-size: 20px;
    padding: 14px 24px;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-settings-modal,
  .cta-buttons,
  .btn {
    display: none !important;
  }

  body {
    background: white;
  }

  * {
    box-shadow: none !important;
    animation: none !important;
  }
}