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

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

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

ul, ol {
  list-style-position: inside;
}

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

/* Typography - Playful Dynamic Style */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2C5F6F;
}

h1 {
  font-size: 42px;
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease-out;
}

h2 {
  font-size: 32px;
  color: #2C5F6F;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #6BCF7F);
  border-radius: 2px;
  animation: rainbow 3s linear infinite;
}

h3 {
  font-size: 24px;
  color: #2C5F6F;
}

h4 {
  font-size: 18px;
  color: #2C5F6F;
}

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

strong {
  font-weight: 700;
  color: #2C5F6F;
}

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

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

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

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

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

.main-nav a {
  color: #2C5F6F;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FF6B6B;
  transform: translateY(-2px);
}

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

.cta-button {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  background: linear-gradient(135deg, #FF8E53, #FF6B6B);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

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

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: linear-gradient(135deg, #FF8E53, #FF6B6B);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5E6 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #2C5F6F;
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #FFFFFF;
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

/* Hero Section - Playful Dynamic */
.hero {
  background: linear-gradient(135deg, #FFE5F1 0%, #FFD93D 50%, #B4E7CE 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, 107, 107, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #2C5F6F;
  margin-bottom: 25px;
  text-shadow: 3px 3px 0 rgba(255, 215, 0, 0.3);
}

.hero-subtitle, .subtitle {
  font-size: 20px;
  color: #34495E;
  margin-bottom: 35px;
  font-weight: 500;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background: #FFFFFF;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  color: #2C5F6F;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  animation: float 3s ease-in-out infinite;
}

/* Buttons - Energetic */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #FFFFFF;
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
  background: linear-gradient(135deg, #FF8E53, #FF6B6B);
}

.btn-secondary {
  background: #FFFFFF;
  color: #2C5F6F;
  border: 3px solid #FF6B6B;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFD93D, #FFA07A);
  color: #2C5F6F;
  border-color: #FFD93D;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 217, 61, 0.4);
}

.btn-link {
  background: transparent;
  color: #FF6B6B;
  padding: 10px 20px;
  font-weight: 700;
  border: 2px solid #FF6B6B;
}

.btn-link:hover {
  background: #FF6B6B;
  color: #FFFFFF;
  transform: translateX(5px);
}

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

/* Problem Solution Section */
.problem-solution {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE5F1 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.problem-solution h2 {
  margin-bottom: 40px;
  color: #FF6B6B;
}

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

.pain-item {
  background: #FFFFFF;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: 700;
  color: #34495E;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.15);
  transition: all 0.3s ease;
  flex: 0 1 auto;
}

.pain-item:hover {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.25);
  background: linear-gradient(135deg, #FFD93D, #FFA07A);
  color: #2C5F6F;
}

.solution-intro {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F6F;
  margin: 30px 0 20px;
}

/* Services Grid */
.services-overview, .services-list {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF9E6 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

.services-grid, .card-container, .benefits-grid, .testimonials-grid, .resource-grid, .articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card, .card, .benefit-item, .testimonial-card, .resource-card, .article-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 111, 0.12);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #6BCF7F);
  border-radius: 20px 20px 0 0;
  animation: rainbow 3s linear infinite;
}

.service-card:hover, .card:hover, .resource-card:hover, .article-card:hover {
  transform: translateY(-10px) scale(1.03) rotate(1deg);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.25);
}

.service-card h3, .card h3 {
  color: #2C5F6F;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p, .card p {
  color: #34495E;
  margin-bottom: 15px;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B6B;
  margin: 20px 0;
  display: block;
}

/* Service Detailed */
.service-detailed {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(44, 95, 111, 0.12);
  margin-bottom: 40px;
  border-left: 6px solid #FF6B6B;
  transition: all 0.3s ease;
}

.service-detailed:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2);
}

.service-detailed h2 {
  color: #2C5F6F;
  margin-bottom: 15px;
}

.service-detailed h3 {
  color: #FF6B6B;
  margin: 25px 0 15px;
  font-size: 20px;
}

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

.service-detailed li {
  margin-bottom: 10px;
  color: #34495E;
  position: relative;
  padding-left: 25px;
}

.service-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6BCF7F;
  font-weight: 700;
  font-size: 18px;
}

/* Benefits Section */
.benefits {
  background: linear-gradient(135deg, #FFE5F1 0%, #E8F5F7 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  text-align: center;
  padding: 35px;
  background: #FFFFFF;
  border-radius: 20px;
}

.benefit-item h3 {
  color: #FF6B6B;
  margin-bottom: 15px;
  font-size: 22px;
}

/* Testimonials - High Contrast for Readability */
.testimonials {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 111, 0.12);
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-left: 5px solid #FFD93D;
}

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

.testimonial-card .author {
  color: #2C5F6F;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin-top: auto;
}

/* CTA Sections */
.cta-final, .cta, .alternative-cta {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFD93D 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 30px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

.cta-final h2, .cta h2, .alternative-cta h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-final h2::after, .cta h2::after {
  background: #FFFFFF;
}

.cta-final p, .cta p, .alternative-cta p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 25px;
}

.offer {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 15px;
  display: inline-block;
  margin: 20px 0;
  font-weight: 700;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.guarantee, .reassurance {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
}

/* Mission Vision Section */
.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: linear-gradient(135deg, #FFF5E6 0%, #E8F5F7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

.mission, .vision, .values {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
  transition: all 0.3s ease;
}

.mission:hover, .vision:hover, .values:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.values ul {
  margin-top: 20px;
}

.values li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.values li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FFD93D;
  font-size: 20px;
}

/* Story Section */
.story {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFD93D, #FFA07A);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  color: #2C5F6F;
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.3);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-8px) rotate(-3deg);
  box-shadow: 0 10px 30px rgba(255, 217, 61, 0.4);
}

/* Impact Stats */
.impact {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFE5F1 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 111, 0.12);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.2);
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #FF6B6B;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

/* Resources Section */
.resources {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
}

.resource-card {
  flex: 1 1 calc(50% - 24px);
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  border-top: 5px solid #6BCF7F;
}

.pages {
  display: inline-block;
  background: linear-gradient(135deg, #FFD93D, #FFA07A);
  color: #2C5F6F;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin: 15px 0;
}

.template-list, .checklist-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.template-item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  border-left: 4px solid #FF6B6B;
  transition: all 0.3s ease;
}

.template-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2);
}

.template-item h4 {
  color: #2C5F6F;
  margin-bottom: 8px;
}

.checklist-list {
  padding-left: 0;
}

.checklist-list li {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
  transition: all 0.3s ease;
}

.checklist-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #6BCF7F, #4CAF50);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.checklist-list li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, #FFF5E6, #FFE5F1);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #6BCF7F 0%, #4CAF50 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 30px;
  border-radius: 30px;
}

.newsletter h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.newsletter h2::after {
  background: #FFFFFF;
}

.newsletter p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Blog Categories */
.blog-categories {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE5F1 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.categories-grid, .category-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.category-item {
  flex: 0 1 auto;
  background: #FFFFFF;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  color: #2C5F6F;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-item:hover {
  background: linear-gradient(135deg, #FFD93D, #FFA07A);
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.3);
}

/* Blog Grid */
.blog-grid {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  border-top: 5px solid #FF6B6B;
}

.article-card h3 {
  color: #2C5F6F;
  margin-bottom: 15px;
  font-size: 20px;
}

.meta {
  color: #7F8C8D;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}

/* Popular Posts */
.popular-posts {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF9E6 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

.popular-list {
  margin-top: 30px;
  padding-left: 25px;
}

.popular-list li {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  color: #34495E;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popular-list li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, #FFE5F1, #FFF5E6);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.15);
}

/* Contact Sections */
.contact-info, .location, .booking, .contact-message, .faq-contact, .commitment {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
  margin-bottom: 40px;
}

.contact-methods, .location-details, .booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 30px;
}

.contact-method, .address, .schedule, .booking-option {
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover, .booking-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
  background: linear-gradient(135deg, #FFF5E6, #FFE5F1);
}

.contact-method h3, .booking-option h3 {
  color: #FF6B6B;
  margin-bottom: 15px;
}

.message-info {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
  margin: 30px 0;
}

.response-time {
  color: #6BCF7F;
  font-weight: 700;
  margin-top: 15px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  border-left: 5px solid #FFD93D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 217, 61, 0.2);
}

.faq-item h4 {
  color: #2C5F6F;
  margin-bottom: 10px;
}

/* Commitment List */
.commitment-list {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
  margin: 30px 0;
}

.commitment-list li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  color: #34495E;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #6BCF7F, #4CAF50);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Legal Pages */
.legal-hero {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF9E6 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
}

.last-updated, .effective-date {
  color: #7F8C8D;
  font-size: 14px;
  margin-top: 15px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #6BCF7F, #4CAF50);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 15px;
}

.legal-content {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
}

.legal-content article {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
}

.legal-content h2 {
  color: #2C5F6F;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #FF6B6B;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 10px;
  color: #34495E;
}

.acceptance {
  background: linear-gradient(135deg, #FFE5F1, #FFF5E6);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #FF6B6B;
  margin-top: 40px;
  font-weight: 600;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #6BCF7F 0%, #4CAF50 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  color: #6BCF7F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.5s ease;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.thank-you-content, .thank-you-message {
  background: #F8F9FA;
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 40px;
}

.message-box {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.step {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(44, 95, 111, 0.1);
  text-align: left;
  border-left: 5px solid #FFD93D;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.2);
}

.note {
  background: linear-gradient(135deg, #FFF5E6, #FFE5F1);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #34495E;
}

/* Next Steps */
.next-steps {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF9E6 100%);
  border-radius: 30px;
  padding: 50px 30px;
  margin-bottom: 40px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 30px;
}

.option {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(44, 95, 111, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.2);
}

.option h3 {
  color: #2C5F6F;
  margin-bottom: 20px;
}

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

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #FFD93D;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  color: #E8F5F7;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col a:hover {
  color: #FFD93D;
  padding-left: 10px;
}

.footer-col p {
  color: #E8F5F7;
  font-size: 14px;
  line-height: 1.8;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.footer-legal a {
  color: #E8F5F7;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFD93D;
}

.copyright {
  text-align: center;
  color: #E8F5F7;
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #82a5b0 0%, #1E4352 100%);
  color: #FFFFFF;
  padding: 25px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 250px;
}

.cookie-text p {
  color: #E8F5F7;
  margin-bottom: 0;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #6BCF7F, #4CAF50);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #4CAF50, #6BCF7F);
  transform: scale(1.05);
}

.cookie-btn-reject {
  background: #E74C3C;
  color: #FFFFFF;
}

.cookie-btn-reject:hover {
  background: #C0392B;
  transform: scale(1.05);
}

.cookie-btn-settings {
  background: transparent;
  color: #FFD93D;
  border: 2px solid #FFD93D;
}

.cookie-btn-settings:hover {
  background: #FFD93D;
  color: #2C5F6F;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.cookie-modal-content h2 {
  color: #2C5F6F;
  margin-bottom: 25px;
}

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

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

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

.cookie-toggle.active {
  background: #6BCF7F;
}

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

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

.cookie-toggle.disabled {
  background: #95a5a6;
  cursor: not-allowed;
}

.cookie-category p {
  color: #34495E;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rainbow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header */
  .main-nav, .cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-content {
    padding: 15px 0;
  }

  /* Hero */
  .hero {
    padding: 50px 20px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* Services Grid */
  .services-grid, .card-container, .benefits-grid, .testimonials-grid, .resource-grid, .articles-grid {
    flex-direction: column;
  }

  .service-card, .card, .benefit-item, .testimonial-card, .resource-card, .article-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Stats */
  .stats-grid {
    flex-direction: column;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  /* Contact Methods */
  .contact-methods, .location-details, .booking-options {
    flex-direction: column;
  }

  .contact-method, .address, .schedule, .booking-option {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

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

  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal */
  .cookie-modal-content {
    padding: 25px;
  }

  /* Options Grid */
  .options-grid {
    flex-direction: column;
  }

  .option {
    flex: 1 1 100%;
  }

  /* Milestones */
  .milestones {
    flex-direction: column;
  }

  .milestone {
    flex: 1 1 100%;
  }

  /* Pain Points */
  .pain-points {
    flex-direction: column;
  }

  .pain-item {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .card, .benefit-item, .testimonial-card, .resource-card, .article-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-item {
    flex: 1 1 calc(50% - 30px);
  }

  .option {
    flex: 1 1 calc(50% - 30px);
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-settings-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: #FFFFFF;
  }

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