/* ================================
   DREAMY ELEVATION - PROFESSIONAL CORPORATE DESIGN
   CSS Reset & 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', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F7FA;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D4A7E;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 60px 20px;
  margin-bottom: 0;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(29, 74, 126, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

header img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #4A5568;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1D4A7E;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #1D4A7E;
}

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

/* ================================
   MOBILE MENU
   ================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #1D4A7E;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 74, 126, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #164070;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #1D4A7E;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 8px;
  color: #D68735;
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #1D4A7E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(29, 74, 126, 0.3);
}

.btn-primary:hover {
  background-color: #164070;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 74, 126, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #1D4A7E;
  border-color: #1D4A7E;
}

.btn-secondary:hover {
  background-color: #1D4A7E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ================================
   HERO SECTIONS
   ================================ */

.hero {
  background: linear-gradient(135deg, #1D4A7E 0%, #2C5F9E 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  position: relative;
}

.hero .subheadline {
  font-size: 20px;
  color: #E6F0FF;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero .trust-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  margin-top: 32px;
  color: #FFFFFF;
}

.hero-internal {
  background: linear-gradient(135deg, #2C5F9E 0%, #1D4A7E 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.hero-internal h1 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #E6F0FF;
  margin-bottom: 16px;
}

/* ================================
   CARDS & GRIDS
   ================================ */

.service-grid,
.program-grid,
.price-cards,
.story-grid,
.values-grid,
.team-grid,
.stats-grid,
.options-grid,
.package-grid,
.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.service-card,
.program-card,
.price-card,
.story-card,
.value-card,
.team-member,
.contact-card,
.stat,
.option-card,
.package-card,
.guarantee-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.program-card:hover,
.price-card:hover,
.story-card:hover,
.value-card:hover,
.option-card:hover,
.package-card:hover,
.guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(29, 74, 126, 0.15);
}

.service-card h3,
.program-card h3,
.price-card h3,
.value-card h3 {
  color: #1D4A7E;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card .price,
.program-card .price,
.price-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #D68735;
  margin-top: auto;
}

.price-card.popular {
  border: 3px solid #D68735;
  position: relative;
}

.price-card .badge,
.package-card .badge,
.featured-testimonial .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #D68735;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-card.best {
  border: 3px solid #D68735;
}

.price-card ul,
.program-card ul,
.package-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.price-card li,
.program-card li,
.package-card li {
  padding-left: 24px;
  position: relative;
  color: #4A5568;
}

.price-card li::before,
.program-card li::before,
.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D4A7E;
  font-weight: 700;
}

/* ================================
   VALUE PROPOSITION & FEATURES
   ================================ */

.value-proposition,
.services-overview,
.process,
.about-story,
.values,
.team,
.achievements {
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.value-proposition h2,
.services-overview h2,
.process h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition p,
.services-overview p {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.benefits li {
  padding: 16px;
  padding-left: 48px;
  background-color: #F5F7FA;
  border-radius: 8px;
  position: relative;
  color: #4A5568;
  font-weight: 500;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #1D4A7E;
  font-size: 20px;
  font-weight: 700;
}

.stats {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1D4A7E;
  margin-top: 32px;
}

/* ================================
   PROCESS STEPS
   ================================ */

.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background-color: #F5F7FA;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.step h3 {
  color: #1D4A7E;
  font-size: 18px;
  margin-bottom: 8px;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #D68735;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials,
.parent-testimonials,
.social-proof {
  background-color: #F5F7FA;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1D4A7E;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 0;
}

.featured-testimonial {
  background: linear-gradient(135deg, #F5F7FA 0%, #E6F0FF 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

.featured-testimonial h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-testimonial .program,
.featured-testimonial .before,
.featured-testimonial .solution,
.featured-testimonial .result,
.featured-testimonial .current {
  margin-bottom: 16px;
  color: #4A5568;
}

.featured-testimonial h3 {
  color: #D68735;
  font-size: 24px;
  margin: 24px 0;
}

.featured-testimonial blockquote {
  font-size: 20px;
  font-style: italic;
  color: #2C3E50;
  max-width: 800px;
  margin: 32px auto;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
}

/* ================================
   STATISTICS & IMPACT
   ================================ */

.impact-stats {
  background: linear-gradient(135deg, #1D4A7E 0%, #2C5F9E 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.impact-stats h2 {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.stats-grid {
  justify-content: center;
}

.stat {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #D68735;
  margin-bottom: 8px;
  line-height: 1;
}

.stat p {
  color: #E6F0FF;
  margin-bottom: 0;
}

/* ================================
   CTA SECTIONS
   ================================ */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #D68735 0%, #B87330 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #D68735;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #F5F7FA;
  transform: translateY(-2px);
}

/* ================================
   PROGRAM CATEGORIES
   ================================ */

.program-categories {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.categories span {
  display: inline-block;
  padding: 12px 24px;
  background-color: #E6F0FF;
  color: #1D4A7E;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.categories span:hover {
  background-color: #1D4A7E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ================================
   SERVICE DETAILS
   ================================ */

.service-detail {
  margin-bottom: 60px;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.service-detail .tagline {
  font-size: 20px;
  color: #D68735;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-detail .success-rate {
  display: inline-block;
  background-color: #E6F0FF;
  color: #1D4A7E;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 700;
  margin-top: 16px;
}

.service-detail:nth-child(even) {
  background-color: #F5F7FA;
}

/* ================================
   PRICING
   ================================ */

.pricing-intro,
.payment-options,
.price-guarantee {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.pricing-intro ul,
.payment-options ul,
.price-guarantee ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}

.pricing-intro li,
.payment-options li,
.price-guarantee li {
  padding-left: 32px;
  position: relative;
  color: #4A5568;
}

.pricing-intro li::before,
.payment-options li::before,
.price-guarantee li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D4A7E;
  font-weight: 700;
  font-size: 18px;
}

.price-card .monthly,
.price-card .duration,
.price-card .package {
  font-size: 14px;
  color: #718096;
  margin-top: -8px;
}

.package-card .savings {
  font-size: 18px;
  font-weight: 700;
  color: #1D4A7E;
  margin: 8px 0;
}

.package-card .validity,
.program-card .duration,
.program-card .format {
  font-size: 14px;
  color: #718096;
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-options,
.location,
.opening-hours,
.team-contact,
.faq-contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.contact-options h2,
.location h2,
.opening-hours h2,
.team-contact h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location .address {
  font-size: 20px;
  font-weight: 700;
  color: #1D4A7E;
  text-align: center;
  margin-bottom: 24px;
}

.location ul,
.opening-hours ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.location li,
.opening-hours li {
  padding: 12px;
  background-color: #F5F7FA;
  border-radius: 8px;
  color: #4A5568;
}

.team-member {
  text-align: center;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
}

.team-member h3 {
  color: #1D4A7E;
  margin-bottom: 8px;
}

.team-member .role {
  color: #D68735;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-card {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card .role {
  color: #D68735;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ================================
   CONTACT FORM INFO
   ================================ */

.contact-form-section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background-color: #F5F7FA;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 32px;
}

.form-info {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-info p {
  margin-bottom: 16px;
  color: #4A5568;
  line-height: 1.8;
}

.form-info strong {
  color: #1D4A7E;
  font-weight: 700;
}

.form-info .note {
  margin-top: 24px;
  padding: 16px;
  background-color: #E6F0FF;
  border-radius: 8px;
  color: #1D4A7E;
  font-weight: 600;
}

/* ================================
   FAQ SECTIONS
   ================================ */

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: #1D4A7E;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4A5568;
  margin-bottom: 0;
}

/* ================================
   RATINGS & REVIEWS
   ================================ */

.ratings {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.rating {
  background-color: #FFFFFF;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 200px;
}

.rating .score {
  font-size: 36px;
  font-weight: 700;
  color: #D68735;
  margin-bottom: 8px;
}

.rating p {
  color: #4A5568;
  margin-bottom: 0;
}

/* ================================
   STORY CARDS
   ================================ */

.story-card {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.story-card h3 {
  color: #1D4A7E;
  margin-bottom: 12px;
}

.story-card .before-after {
  font-weight: 700;
  color: #D68735;
  font-size: 16px;
  margin-bottom: 16px;
}

.story-card .quote {
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.8;
}

.story-card .program {
  font-size: 14px;
  color: #718096;
}

/* ================================
   THANK YOU PAGE
   ================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #1D4A7E 0%, #2C5F9E 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
}

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

.thank-you-hero .subheadline {
  font-size: 24px;
  color: #E6F0FF;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: #E6F0FF;
  font-size: 18px;
}

.explore-meanwhile,
.testimonial-quick,
.faq-quick,
.cta-alternative {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.links-grid,
.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.link-card,
.cta-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.link-card:hover,
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.timeframe {
  display: inline-block;
  background-color: #E6F0FF;
  color: #1D4A7E;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-content {
  background-color: #FFFFFF;
  margin-bottom: 60px;
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 32px;
  text-align: center;
}

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

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

.legal-content p,
.legal-content li {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: #1D4A7E;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #D68735;
}

/* ================================
   FOOTER
   ================================ */

footer {
  background-color: #1D4A7E;
  color: #E6F0FF;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

footer img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

footer .tagline {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.footer-contact p {
  color: #E6F0FF;
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-nav a {
  color: #E6F0FF;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

footer > .container > p:last-child {
  color: #A0AEC0;
  font-size: 14px;
  margin-top: 16px;
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1D4A7E;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  color: #E6F0FF;
  margin-bottom: 0;
  flex: 1 1 300px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
}

.cookie-accept {
  background-color: #D68735;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #B87330;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-settings:hover {
  background-color: rgba(230, 240, 255, 0.1);
}

/* ================================
   COOKIE PREFERENCES MODAL
   ================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #1D4A7E;
}

.cookie-preference {
  padding: 20px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-preference h3 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #1D4A7E;
}

.cookie-preference p {
  margin-bottom: 0;
  font-size: 14px;
  color: #718096;
  flex: 1 1 100%;
}

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

.cookie-toggle.active {
  background-color: #1D4A7E;
}

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

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

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

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

.cookie-save,
.cookie-modal-close {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
}

.cookie-save {
  background-color: #1D4A7E;
  color: #FFFFFF;
}

.cookie-save:hover {
  background-color: #164070;
}

.cookie-modal-close {
  background-color: transparent;
  color: #4A5568;
  border: 2px solid #CBD5E0;
}

.cookie-modal-close:hover {
  background-color: #F5F7FA;
}

/* ================================
   RESPONSIVE DESIGN - TABLETS
   ================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .service-card,
  .program-card,
  .price-card,
  .story-card,
  .value-card,
  .option-card,
  .package-card,
  .guarantee-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ================================
   RESPONSIVE DESIGN - MOBILE
   ================================ */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  .hero-internal {
    padding: 60px 20px;
  }
  
  .hero-internal h1 {
    font-size: 28px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .service-card,
  .program-card,
  .price-card,
  .story-card,
  .value-card,
  .team-member,
  .contact-card,
  .stat,
  .option-card,
  .package-card,
  .guarantee-card,
  .link-card,
  .cta-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px 24px;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  .ratings {
    flex-direction: column;
  }
  
  .rating {
    width: 100%;
  }
  
  .stats-grid {
    gap: 16px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  .impact-stats {
    padding: 40px 16px;
  }
  
  .cta-banner,
  .cta-section {
    padding: 60px 16px;
  }
  
  .thank-you-hero {
    padding: 60px 16px;
  }
  
  .thank-you-hero h1 {
    font-size: 32px;
  }
  
  .thank-you-hero .subheadline {
    font-size: 18px;
  }
}

/* ================================
   ANIMATIONS
   ================================ */

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

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

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

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden {
  display: none;
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  a {
    text-decoration: underline;
  }
}