/* ====================================
   PRISTINE FLOW - ELEGANT CLASSIC CSS
   Design Style: Timeless Elegant Design
   ==================================== */

/* CSS Reset & Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Elegant Classic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  line-height: 1.3;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #0A7AFF;
}

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

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

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

/* Buttons - Elegant Classic Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #1B3A57;
  color: #ffffff;
  border-color: #1B3A57;
}

.btn-primary:hover {
  background-color: #0A7AFF;
  border-color: #0A7AFF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 122, 255, 0.2);
}

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

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

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e4dc;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #2c2c2c;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #0A7AFF;
  border-bottom-color: #0A7AFF;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #1B3A57;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #0A7AFF;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background-color: transparent;
  color: #2c2c2c;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #0A7AFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2c2c2c;
  padding: 16px 0;
  border-bottom: 1px solid #e8e4dc;
  transition: all 0.3s ease;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #d0d0d0;
  font-style: italic;
}

/* Page Hero */
.page-hero {
  background-color: #1B3A57;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.page-hero .mission {
  font-size: 20px;
  font-style: italic;
  margin-top: 24px;
  color: #f0f0f0;
}

.page-hero .benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .benefits-list li {
  color: #ffffff;
  font-size: 16px;
  padding-left: 32px;
  position: relative;
}

.page-hero .benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9A3;
  font-weight: bold;
  font-size: 18px;
}

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

.value-proposition,
.services-overview,
.how-it-works,
.testimonials,
.services-detailed,
.service-packages,
.program-categories,
.featured-programs,
.program-features,
.pricing-tiers,
.coaching-types,
.coaches,
.coaching-benefits,
.pricing-coaching,
.featured-article,
.article-grid-section,
.quick-tips,
.resources-download,
.story,
.values,
.team,
.achievements,
.location,
.contact-methods,
.contact-form-section,
.booking-form-section,
.visit-info,
.legal-content,
.thank-you-hero,
.next-actions,
.social-proof {
  padding: 60px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
  font-style: italic;
}

/* Card Grids - FLEXBOX ONLY */
.value-grid,
.services-grid,
.categories-grid,
.programs-grid,
.features-grid,
.pricing-grid,
.coaching-grid,
.coaches-grid,
.values-grid,
.team-grid,
.stats-grid,
.packages-grid,
.contact-grid,
.info-grid,
.action-grid,
.tips-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

/* Card Styles - Elegant Classic */
.value-card,
.service-card,
.category-card,
.program-card,
.feature-card,
.pricing-card,
.coaching-card,
.coach-card,
.value-card,
.team-member,
.stat-card,
.package-card,
.contact-card,
.info-card,
.action-card,
.tip-card,
.resource-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.category-card:hover,
.program-card:hover,
.feature-card:hover,
.pricing-card:hover,
.coaching-card:hover,
.coach-card:hover,
.package-card:hover,
.contact-card:hover,
.info-card:hover,
.action-card:hover,
.tip-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #0A7AFF;
}

.value-card h3,
.service-card h3,
.category-card h3,
.program-card h3,
.feature-card h3,
.pricing-card h3,
.coaching-card h3,
.coach-card h3,
.value-card h3,
.team-member h3,
.package-card h3,
.contact-card h3,
.info-card h3,
.action-card h3,
.tip-card h3,
.resource-card h3 {
  color: #1B3A57;
  margin-bottom: 16px;
}

/* Price Display */
.price {
  font-size: 28px;
  font-weight: 600;
  color: #1B3A57;
  margin: 24px 0 16px;
}

.original-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.package-price {
  font-size: 36px;
  font-weight: 600;
  color: #0A7AFF;
  margin: 16px 0;
}

.savings {
  font-size: 14px;
  color: #00D9A3;
  font-weight: 600;
  margin-top: 8px;
}

/* Featured/Badge */
.featured {
  border: 2px solid #0A7AFF;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #0A7AFF;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Steps Layout */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #1B3A57;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #0A7AFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.8;
}

.customer-name {
  font-weight: 600;
  color: #1B3A57;
  margin-bottom: 4px;
}

.customer-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.rating {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
}

/* CTA Banner */
.cta-banner {
  background-color: #1B3A57;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

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

.urgency {
  font-size: 14px;
  color: #00D9A3;
  font-style: italic;
  margin-top: 24px;
}

/* Service Details */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detailed {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
  margin-bottom: 20px;
}

.service-detailed h2 {
  color: #1B3A57;
  margin-bottom: 16px;
}

.service-detailed ul {
  margin-top: 24px;
  margin-bottom: 24px;
}

.ideal-for {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 16px;
}

/* Duration Badge */
.duration {
  display: inline-block;
  background-color: #f0f0f0;
  color: #666;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Article Cards */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category {
  display: inline-block;
  background-color: #0A7AFF;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}

.meta {
  font-size: 13px;
  color: #999;
  margin-top: 12px;
}

/* Featured Article */
.featured-card {
  background: linear-gradient(135deg, #1B3A57 0%, #0A7AFF 100%);
  color: #ffffff;
  padding: 48px;
  border-radius: 4px;
  margin-bottom: 48px;
}

.featured-card h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.featured-card p {
  color: #e0e0e0;
}

.featured-card .meta {
  color: #d0d0d0;
}

/* Category Buttons */
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.category-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  border: 1px solid #e8e4dc;
  border-radius: 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #2c2c2c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #1B3A57;
  color: #ffffff;
  border-color: #1B3A57;
}

/* Timeline */
.timeline {
  margin: 48px 0;
  padding-left: 32px;
  border-left: 2px solid #e8e4dc;
}

.timeline-item {
  margin-bottom: 32px;
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #0A7AFF;
  border-radius: 50%;
  border: 3px solid #faf8f5;
}

.year {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #1B3A57;
  margin-bottom: 8px;
}

/* Blockquote */
blockquote {
  background-color: #f8f6f2;
  border-left: 4px solid #0A7AFF;
  padding: 32px;
  margin: 48px 0;
  font-style: italic;
  font-size: 18px;
  color: #2c2c2c;
}

blockquote p {
  margin-bottom: 16px;
  color: #2c2c2c;
}

cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

/* Team Member Cards */
.title {
  font-size: 14px;
  color: #0A7AFF;
  font-weight: 600;
  margin-bottom: 8px;
}

.specialty {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-bottom: 16px;
}

/* Stats Display */
.number {
  font-size: 48px;
  font-weight: 600;
  color: #0A7AFF;
  line-height: 1;
  margin-bottom: 8px;
}

.label {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Location Info */
.location-info {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
  margin-top: 32px;
}

.location-info ul {
  margin-top: 16px;
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 40px auto 0;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e4dc;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #2c2c2c;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0A7AFF;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 122, 255, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 32px;
  background-color: #00D9A3;
  color: #ffffff;
  border-radius: 50%;
  font-size: 48px;
  font-weight: bold;
}

.confirmation-message {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}

.next-steps {
  background-color: #f8f6f2;
  padding: 32px;
  border-radius: 4px;
  margin: 40px auto;
  max-width: 600px;
  text-align: left;
}

.next-steps h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.next-steps ul {
  margin: 0;
}

/* Legal/Text Content */
.text-section {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 4px;
  border: 1px solid #e8e4dc;
}

.text-section h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 1px solid #e8e4dc;
}

.text-section h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.text-section h3 {
  margin-top: 32px;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #d0d0d0;
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.footer-section ul li a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0A7AFF;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e4dc;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

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

.cookie-consent-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #0A7AFF;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e8e4dc;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-toggle label {
  font-size: 14px;
  color: #2c2c2c;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Mobile menu visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav */
  .nav-menu,
  .main-nav > .btn {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Cards full width on mobile */
  .value-card,
  .service-card,
  .category-card,
  .program-card,
  .feature-card,
  .pricing-card,
  .coaching-card,
  .coach-card,
  .team-member,
  .stat-card,
  .package-card,
  .contact-card,
  .info-card,
  .action-card,
  .tip-card,
  .resource-card,
  .article-card,
  .testimonial-card,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Sections padding */
  .section,
  .hero,
  .page-hero,
  .cta-banner {
    padding: 48px 20px;
  }
  
  /* Buttons stack */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 24px;
  }
  
  /* Footer stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent stack */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
  
  /* Legal content */
  .text-section {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .service-card,
  .program-card,
  .feature-card,
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card,
  .coaching-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (min-width: 1025px) {
  /* Desktop: three columns for some grids */
  .value-grid .value-card {
    flex: 1 1 calc(25% - 24px);
  }
  
  .services-grid .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .article-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

/* 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);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}