/* ===== 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A4466;
}

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
}

.subtitle {
  font-size: 18px;
  color: #666666;
  font-weight: 400;
}

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

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

/* ===== HEADER ===== */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1A4466;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #E07628;
  background-color: rgba(224, 118, 40, 0.1);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #1A4466;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
  position: fixed;
  top: 16px;
  right: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px 24px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background-color: #1A4466;
  color: #FFFFFF;
}

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

.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #1A4466;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(224, 118, 40, 0.1);
  border-left-color: #E07628;
  color: #E07628;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: #E07628;
  color: #FFFFFF;
  border-color: #E07628;
}

.btn-primary:hover {
  background-color: #C5641F;
  border-color: #C5641F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 118, 40, 0.3);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #1A4466;
  border-color: #1A4466;
}

.btn-secondary:hover {
  background-color: #1A4466;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 68, 102, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1A4466 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

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

.trust-indicator {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  background-color: #F9FAFB;
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
}

.benefit-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
  text-align: left;
  font-size: 15px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 60px 20px;
  text-align: center;
}

.services-overview h2 {
  margin-bottom: 16px;
}

.services-overview > p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
}

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

.service-card {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 68, 102, 0.12);
  border-color: #E07628;
}

.service-card h3 {
  margin-bottom: 12px;
  color: #1A4466;
}

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

.service-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #E07628;
  margin-top: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: #F9FAFB;
  padding: 60px 20px;
  text-align: center;
}

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

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

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
}

.testimonial-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1A4466;
  margin-bottom: 4px;
}

.testimonial-card .service {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-bottom: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #E07628 0%, #C5641F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
}

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

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .benefits-list {
  font-size: 15px;
  margin-bottom: 32px;
}

.cta-banner .trust-element {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
}

/* ===== MISSION & STORY ===== */
.mission, .story {
  padding: 60px 20px;
}

.mission h2, .story h2 {
  margin-bottom: 24px;
}

.mission h3, .story h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.mission ul {
  margin-left: 20px;
  margin-top: 16px;
}

.mission li {
  margin-bottom: 12px;
  color: #333333;
}

/* ===== TEAM ===== */
.team {
  background-color: #F9FAFB;
  padding: 60px 20px;
  text-align: center;
}

.team h2 {
  margin-bottom: 16px;
}

.team > p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
}

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

.team-member {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.team-member p {
  color: #666666;
  font-size: 15px;
}

/* ===== SERVICE DETAIL ===== */
.services {
  padding: 60px 20px;
}

.service-detail {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 40px 32px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 24px rgba(26, 68, 102, 0.12);
  border-color: #E07628;
}

.service-detail h2 {
  margin-bottom: 12px;
}

.service-detail .tagline {
  font-size: 18px;
  color: #666666;
  font-style: italic;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #E07628;
  margin-bottom: 20px;
}

.service-detail ul {
  margin: 24px 0;
  margin-left: 20px;
}

.service-detail li {
  margin-bottom: 12px;
  color: #333333;
}

.service-detail .schedule {
  background-color: #F9FAFB;
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 500;
  color: #1A4466;
}

/* ===== PROGRAMS ===== */
.programs {
  padding: 60px 20px;
}

.programs h2 {
  text-align: center;
  margin-bottom: 16px;
}

.programs > p {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
}

.schedule-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.schedule-day {
  background-color: #F9FAFB;
  border-left: 4px solid #E07628;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.schedule-day h3 {
  color: #1A4466;
  margin-bottom: 12px;
  font-size: 18px;
}

.schedule-day p {
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.program-detail {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 40px 32px;
  margin-bottom: 32px;
}

.program-detail h3 {
  margin-bottom: 12px;
}

.program-detail .tagline {
  font-size: 18px;
  color: #666666;
  font-style: italic;
  margin-bottom: 16px;
}

.program-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #E07628;
  margin-bottom: 20px;
}

.program-detail ul {
  margin: 24px 0;
  margin-left: 20px;
}

.program-detail li {
  margin-bottom: 12px;
  color: #333333;
}

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

.membership-card {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 68, 102, 0.12);
  border-color: #E07628;
}

.membership-card h3 {
  margin-bottom: 16px;
}

.membership-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E07628;
  margin-bottom: 16px;
}

.membership-card p {
  color: #666666;
  margin-bottom: 8px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 60px 20px;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing > p {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 68, 102, 0.12);
  border-color: #E07628;
}

.pricing-card h3 {
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E07628;
  margin-bottom: 8px;
}

.pricing-card .duration {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.pricing-card p {
  color: #333333;
  font-size: 15px;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.package-card {
  background-color: #F9FAFB;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 68, 102, 0.12);
  border-color: #E07628;
  background-color: #FFFFFF;
}

.package-card h3 {
  margin-bottom: 16px;
}

.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E07628;
  margin-bottom: 12px;
}

.package-card .savings {
  font-size: 14px;
  font-weight: 600;
  color: #10B981;
  margin-top: 8px;
}

.package-card p {
  color: #666666;
  font-size: 15px;
  margin-bottom: 8px;
}

.membership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* ===== BLOG ===== */
.blog {
  padding: 60px 20px;
}

.blog h2 {
  margin-bottom: 32px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.article-card {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 68, 102, 0.12);
  border-color: #E07628;
}

.article-card h3 {
  margin-bottom: 12px;
  color: #1A4466;
}

.article-card p {
  color: #666666;
  margin-bottom: 16px;
  flex-grow: 1;
}

.article-card .meta {
  font-size: 14px;
  color: #999999;
  margin-bottom: 0;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.article-item {
  background-color: #F9FAFB;
  border-left: 4px solid #E07628;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.article-item:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-item h3 {
  margin-bottom: 12px;
  color: #1A4466;
  font-size: 20px;
}

.article-item p {
  color: #666666;
  margin-bottom: 8px;
}

.article-item .date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 0;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-tag {
  background-color: #F9FAFB;
  color: #1A4466;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.category-tag:hover {
  background-color: #E07628;
  color: #FFFFFF;
  border-color: #E07628;
}

/* ===== CONTACT ===== */
.contact {
  padding: 60px 20px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
  justify-content: center;
}

.contact-method {
  background-color: #F9FAFB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.contact-method h3 {
  margin-bottom: 12px;
  color: #1A4466;
}

.contact-method p {
  color: #666666;
  margin-bottom: 8px;
}

.contact-info {
  background-color: #F9FAFB;
  border-radius: 12px;
  padding: 40px 32px;
  margin-bottom: 60px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.contact-info p {
  color: #666666;
  line-height: 1.8;
}

.team-contact {
  background-color: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 40px 32px;
}

.team-contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-person {
  background-color: #F9FAFB;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.contact-person h3 {
  margin-bottom: 8px;
  color: #1A4466;
  font-size: 18px;
}

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

.contact-person p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.legal-content p {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  color: #666666;
  margin-bottom: 8px;
}

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

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

/* ===== THANK YOU PAGE ===== */
.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
}

.thank-you-content h1 {
  color: #FFFFFF;
  text-align: center;
}

.thank-you-content .subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-size: 18px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #F9FAFB;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 360px;
  text-align: center;
}

.step h3 {
  margin-bottom: 12px;
  color: #1A4466;
}

.step p {
  color: #666666;
}

.while-waiting {
  padding: 60px 20px;
}

.while-waiting h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.suggestion {
  background-color: #F9FAFB;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.suggestion h3 {
  margin-bottom: 12px;
  color: #1A4466;
}

.suggestion p {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.social-proof {
  background-color: #F9FAFB;
  padding: 60px 20px;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 40px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.stat {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 150px;
  max-width: 250px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #E07628;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat p {
  color: #666666;
  font-size: 16px;
}

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

.social-proof .testimonial p {
  color: #333333;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.social-proof .testimonial .author {
  font-weight: 700;
  color: #1A4466;
  font-style: normal;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background-color: #1A4466;
  color: #FFFFFF;
  padding: 48px 20px 24px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #E07628;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 999;
  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;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background-color: #E07628;
  color: #FFFFFF;
  border-color: #E07628;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #1A4466;
  border-color: #1A4466;
}

.cookie-btn-reject:hover {
  background-color: #1A4466;
  color: #FFFFFF;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #666666;
  border: none;
  text-decoration: underline;
  padding: 10px;
}

.cookie-btn-settings:hover {
  color: #E07628;
}

/* ===== COOKIE SETTINGS 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: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-modal-header h2 {
  margin-bottom: 0;
  color: #1A4466;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  color: #666666;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

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

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

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

.cookie-category h3 {
  margin-bottom: 0;
  color: #1A4466;
  font-size: 18px;
}

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

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

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

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

.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

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

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

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px;
  }

  .benefit-item {
    flex: 1 1 calc(50% - 24px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }

  .team-member {
    flex: 1 1 calc(50% - 24px);
  }

  .schedule-day {
    flex: 1 1 calc(50% - 16px);
  }

  .membership-card {
    flex: 1 1 calc(50% - 24px);
  }

  .pricing-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .package-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .article-card {
    flex: 1 1 calc(50% - 24px);
  }

  .contact-method {
    flex: 1 1 calc(50% - 24px);
  }

  .contact-person {
    flex: 1 1 calc(50% - 24px);
  }

  .step {
    flex: 1 1 calc(33.333% - 24px);
  }

  .suggestion {
    flex: 1 1 calc(33.333% - 24px);
  }

  .stat {
    flex: 1 1 calc(33.333% - 32px);
  }
}

@media (min-width: 1024px) {
  .benefit-item {
    flex: 1 1 calc(50% - 24px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }

  .team-member {
    flex: 1 1 calc(25% - 24px);
  }

  .schedule-day {
    flex: 1 1 calc(33.333% - 16px);
  }

  .article-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .contact-person {
    flex: 1 1 calc(33.333% - 24px);
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 28px;
  }

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

  .cta-buttons .btn {
    width: 100%;
  }

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

  .service-card {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .team-member {
    flex: 1 1 100%;
  }

  .schedule-day {
    flex: 1 1 100%;
  }

  .membership-card {
    flex: 1 1 100%;
  }

  .pricing-card {
    flex: 1 1 100%;
  }

  .package-card {
    flex: 1 1 100%;
  }

  .article-card {
    flex: 1 1 100%;
  }

  .contact-method {
    flex: 1 1 100%;
  }

  .contact-person {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .suggestion {
    flex: 1 1 100%;
  }

  .stat {
    flex: 1 1 100%;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

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

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

.service-card,
.testimonial-card,
.team-member,
.article-card,
.pricing-card {
  animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

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

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

.trust-element {
  font-size: 14px;
  color: #666666;
  text-align: center;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid #E07628;
  outline-offset: 2px;
}

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

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 20pt;
  }

  h3 {
    font-size: 16pt;
  }
}