/* ============================================
   RippleGlobe Fitness - Scandinavian Clean Design
   Design Style: Light, Natural, Functional Beauty
   ============================================ */

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

/* Scandinavian Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1D3557;
  margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

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

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

ul {
  list-style: none;
}

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

/* Buttons - Scandinavian Clean Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover {
  background-color: #C62935;
  border-color: #C62935;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

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

.btn-secondary:hover {
  background-color: #1D3557;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.15);
}

/* ============================================
   MOBILE MENU (Hamburger Navigation)
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1D3557;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1D3557;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  color: #1D3557;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #ecf0f1;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E63946;
  padding-left: 10px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1D3557;
  color: #ffffff;
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.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;
  min-width: 250px;
}

.cookie-text p {
  margin-bottom: 8px;
  color: #F1FAEE;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #E63946;
  color: #ffffff;
  border-color: #E63946;
}

.cookie-accept:hover {
  background-color: #C62935;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

.cookie-settings {
  background-color: transparent;
  color: #F1FAEE;
  border-color: #F1FAEE;
}

.cookie-settings:hover {
  background-color: rgba(241, 250, 238, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #1D3557;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #ecf0f1;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

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

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

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

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

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

/* ============================================
   HEADER
   ============================================ */

header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.main-nav a {
  color: #1D3557;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #1D3557;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-badges span {
  color: #1D3557;
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */

.page-hero {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

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

.last-updated {
  font-size: 14px;
  color: #7f8c8d;
  font-style: italic;
}

.guarantee-badge {
  display: inline-block;
  background-color: #E63946;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */

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

.section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.benefit-card {
  flex: 1;
  min-width: 250px;
  max-width: calc(50% - 12px);
  background-color: #F1FAEE;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.benefit-card h3 {
  color: #1D3557;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #2c3e50;
  line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.service-card {
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - 16px);
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.service-card p {
  color: #2c3e50;
  flex: 1;
  margin-bottom: 16px;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: calc(25% - 18px);
  text-align: center;
  padding: 32px 20px;
  background-color: #F1FAEE;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background-color: #E63946;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: #2c3e50;
}

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

.testimonials {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: calc(50% - 12px);
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #2c3e50;
  font-style: italic;
  line-height: 1.8;
  font-size: 16px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #F1FAEE;
}

.testimonial-author strong {
  color: #1D3557;
  font-size: 16px;
}

.testimonial-author span {
  color: #7f8c8d;
  font-size: 14px;
}

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

.cta-final,
.cta-block {
  background-color: #1D3557;
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.cta-final h2,
.cta-block h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

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

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

.trust-indicators span {
  color: #F1FAEE;
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   MISSION/VISION SECTION
   ============================================ */

.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.content-card {
  flex: 1;
  min-width: 280px;
  max-width: calc(50% - 12px);
  background-color: #F1FAEE;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.content-card h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
}

.content-card p {
  line-height: 1.8;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values {
  margin-top: 48px;
}

.values h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.value-card {
  flex: 1;
  min-width: 220px;
  max-width: calc(25% - 18px);
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.value-card h3 {
  color: #E63946;
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #2c3e50;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.team > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
}

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

.team-card {
  flex: 1;
  min-width: 240px;
  max-width: calc(25% - 18px);
  background-color: #F1FAEE;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.team-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.team-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.statistics {
  background-color: #1D3557;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.statistics h2 {
  color: #ffffff;
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1;
  min-width: 200px;
  max-width: calc(25% - 18px);
  text-align: center;
  padding: 24px;
  background-color: rgba(241, 250, 238, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 8px;
}

.stat-label {
  color: #F1FAEE;
  font-size: 16px;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.program-card {
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - 16px);
  background-color: #F1FAEE;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.program-card h3 {
  color: #1D3557;
  font-size: 22px;
}

.program-meta {
  color: #E63946;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-card ul {
  margin-top: 16px;
}

.program-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #2c3e50;
  font-size: 14px;
}

.program-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}

/* ============================================
   PROGRAM FEATURES
   ============================================ */

.program-features {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.feature-card {
  flex: 1;
  min-width: 220px;
  max-width: calc(25% - 18px);
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #2c3e50;
}

/* ============================================
   SERVICES DETAIL
   ============================================ */

.services-detail {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-detail-card {
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - 16px);
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-detail-card h3 {
  color: #1D3557;
  font-size: 22px;
}

.service-detail-card .service-price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.service-detail-card .service-price span {
  font-size: 16px;
  font-weight: 400;
  color: #7f8c8d;
}

.service-detail-card ul {
  margin-top: 16px;
}

.service-detail-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #2c3e50;
  font-size: 14px;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}

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

.pricing-tiers {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border: 3px solid #E63946;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E63946;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 28px;
  color: #1D3557;
  text-align: center;
}

.tagline {
  text-align: center;
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 8px;
}

.price {
  text-align: center;
  margin: 16px 0;
}

.price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
}

.price .period {
  font-size: 16px;
  color: #7f8c8d;
}

.pricing-card .features {
  flex: 1;
  margin: 16px 0;
}

.pricing-card .features li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: #2c3e50;
  font-size: 15px;
  border-bottom: 1px solid #ecf0f1;
}

.pricing-card .features li:last-child {
  border-bottom: none;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   ONE-TIME SERVICES
   ============================================ */

.one-time-services {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.one-time-services .service-card {
  max-width: calc(33.333% - 16px);
}

.one-time-services .service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
  text-align: left;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee {
  background-color: #1D3557;
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.guarantee p {
  color: #F1FAEE;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   BLOG SECTIONS
   ============================================ */

.blog-featured {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
}

.featured-post h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
  color: #E63946;
}

.featured-post h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #7f8c8d;
  font-size: 14px;
}

.post-meta span {
  position: relative;
  padding-left: 16px;
}

.post-meta span::before {
  content: '•';
  position: absolute;
  left: 0;
}

.post-meta span:first-child::before {
  content: '';
}

.blog-posts {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.post-card {
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - 16px);
  background-color: #F1FAEE;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.post-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1D3557;
}

.post-card p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-card {
  flex: 1;
  min-width: 220px;
  max-width: calc(25% - 18px);
  background-color: #F1FAEE;
  padding: 32px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-card h3 {
  color: #1D3557;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.6;
}

.availability {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid #ffffff;
  font-size: 13px;
  color: #7f8c8d;
}

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

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

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

.contact-form-section > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ecf0f1;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
  background-color: #f8f9fa;
  color: #2c3e50;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #E63946;
}

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

.form-note {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  padding: 16px;
  border-radius: 4px;
  margin-top: 20px;
}

.form-note p {
  color: #856404;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #F1FAEE;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.faq-item p {
  color: #2c3e50;
  line-height: 1.7;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .text-section {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.thank-you-hero {
  padding: 80px 20px;
  margin-bottom: 60px;
  background-color: #F1FAEE;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27ae60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

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

.sub-message {
  font-size: 16px;
  color: #7f8c8d;
  margin-top: 16px;
}

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

.contact-alt {
  background-color: #F1FAEE;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-alt h2 {
  margin-bottom: 16px;
}

.contact-alt p {
  font-size: 16px;
  max-width: 600px;
  margin: 8px auto;
}

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

footer {
  background-color: #1D3557;
  color: #F1FAEE;
  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;
  min-width: 200px;
}

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

.footer-col p {
  color: #F1FAEE;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #F1FAEE;
  font-size: 14px;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #E63946;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
}

.footer-bottom p {
  color: #bdc3c7;
  font-size: 14px;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* Grid Layouts */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .content-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .programs-grid,
  .features-grid,
  .pricing-grid,
  .posts-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step-card,
  .testimonial-card,
  .content-card,
  .value-card,
  .team-card,
  .stat-card,
  .program-card,
  .feature-card,
  .pricing-card,
  .service-detail-card,
  .post-card,
  .contact-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Sections */
  .section {
    padding: 40px 16px;
  }
  
  .cta-final h2,
  .cta-block h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  
  .mobile-menu {
    width: 90%;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-price {
    font-size: 28px;
  }
  
  .price .amount {
    font-size: 36px;
  }
  
  .form-container {
    padding: 24px;
  }
}

/* ============================================
   ANIMATION & TRANSITIONS
   ============================================ */

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

.hero-content,
.page-hero,
.benefit-card,
.service-card,
.step-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}