/* ========================================
   ARCANE ZENITH - WARM & FRIENDLY DESIGN
   Complete CSS Styles for All Pages
   ======================================== */

/* ========================================
   CSS RESET & NORMALIZE
   ======================================== */
* {
  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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

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

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5F4C;
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #E8B86D;
  color: #2D5F4C;
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.3);
}

.btn-primary:hover {
  background-color: #F0C875;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 184, 109, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5F4C;
  border: 2px solid #2D5F4C;
}

.btn-secondary:hover {
  background-color: #2D5F4C;
  color: #FFF8F0;
  transform: translateY(-2px);
}

.btn-link {
  color: #7BA882;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.btn-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #7BA882;
  transition: width 0.3s ease;
}

.btn-link:hover:after {
  width: 100%;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(45, 95, 76, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

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

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #E8B86D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #2D5F4C;
  color: #FFF8F0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(45, 95, 76, 0.3);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.mobile-nav a {
  color: #2D5F4C;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F5EFE6;
  transform: translateX(8px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, #F5EFE6 0%, #FFF8F0 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 32px 24px;
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.08);
}

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

.hero h1 {
  color: #2D5F4C;
  margin-bottom: 24px;
  font-size: 48px;
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #7BA882 0%, #2D5F4C 100%);
  color: #FFF8F0;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 24px 24px;
}

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

.page-subtitle {
  font-size: 20px;
  color: #F5EFE6;
  margin-bottom: 0;
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */
.introduction {
  text-align: center;
  padding: 60px 20px;
}

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

.introduction > p {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.value-card {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.15);
}

.value-card h3 {
  color: #2D5F4C;
  margin-bottom: 16px;
}

.value-card p {
  color: #666;
  margin-bottom: 0;
}

/* ========================================
   SERVICES PREVIEW & GRID
   ======================================== */
.services-preview {
  background-color: #F5EFE6;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
}

.services-preview h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

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

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

.service-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  flex: 1 1 340px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.15);
}

.service-card h3 {
  color: #2D5F4C;
  font-size: 22px;
  margin-bottom: 16px;
}

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

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E8B86D;
  margin: 16px 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: 60px 20px;
  background-color: #fff;
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
}

.benefit-item h3 {
  color: #2D5F4C;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  margin-bottom: 0;
}

/* ========================================
   HOW IT WORKS / PROCESS STEPS
   ======================================== */
.how-it-works {
  background: linear-gradient(135deg, #F5EFE6 0%, #FFF8F0 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 95, 76, 0.08);
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #E8B86D;
  color: #2D5F4C;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.3);
}

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

.step p {
  color: #666;
  margin-bottom: 0;
  font-size: 15px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 60px 20px;
  background-color: #F5EFE6;
  border-radius: 24px;
  margin: 40px 24px;
}

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

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

.testimonial-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  flex: 1 1 400px;
  max-width: 540px;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-card .client-name {
  color: #2D5F4C;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #7BA882 0%, #2D5F4C 100%);
  color: #FFF8F0;
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 24px;
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.2);
}

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

.cta-section p {
  color: #F5EFE6;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: #2D5F4C;
  color: #F5EFE6;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 220px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #F5EFE6;
  font-size: 14px;
}

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

.site-footer p {
  color: #F5EFE6;
  font-size: 14px;
  margin-bottom: 8px;
}

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

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

.site-footer nav a:hover {
  color: #E8B86D;
  padding-left: 8px;
}

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

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

/* ========================================
   SERVICE DETAILS PAGE
   ======================================== */
.service-details {
  padding: 60px 20px;
}

.service-detail {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  margin-bottom: 32px;
}

.service-detail h2 {
  color: #2D5F4C;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #E8B86D;
  margin: 16px 0 24px;
  display: block;
}

.service-detail h3 {
  color: #2D5F4C;
  font-size: 20px;
  margin: 24px 0 12px;
}

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

.service-detail ul li {
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

.service-detail strong {
  color: #2D5F4C;
}

.service-process {
  background-color: #F5EFE6;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
}

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

.process-step {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 95, 76, 0.08);
}

/* ========================================
   ABOUT US PAGE
   ======================================== */
.mission-vision {
  padding: 60px 20px;
}

.mission,
.vision,
.values {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  margin-bottom: 32px;
}

.values ul {
  padding-left: 20px;
}

.values ul li {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}

.story {
  background-color: #F5EFE6;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

.philosophy {
  padding: 60px 20px;
}

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

.pillar {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.15);
}

.team {
  background: linear-gradient(135deg, #F5EFE6 0%, #FFF8F0 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
  text-align: center;
}

.team p {
  max-width: 800px;
  margin: 0 auto;
}

/* ========================================
   BLOG / HEALTH TIPS PAGE
   ======================================== */
.blog-categories {
  padding: 40px 20px;
  text-align: center;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.category-btn {
  padding: 10px 24px;
  background-color: #fff;
  color: #2D5F4C;
  border: 2px solid #7BA882;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #7BA882;
  color: #FFF8F0;
}

.featured-article {
  padding: 60px 20px;
  margin: 40px 24px;
}

.article-featured {
  background: linear-gradient(135deg, #7BA882 0%, #2D5F4C 100%);
  color: #FFF8F0;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.15);
  position: relative;
}

.article-featured .badge {
  background-color: #E8B86D;
  color: #2D5F4C;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.article-featured h2 {
  color: #FFF8F0;
  font-size: 32px;
  margin-bottom: 16px;
}

.article-featured p {
  color: #F5EFE6;
  margin-bottom: 16px;
}

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

.blog-grid {
  padding: 60px 20px;
}

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

.article-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.15);
}

.category-tag {
  background-color: #E8B86D;
  color: #2D5F4C;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

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

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

.newsletter-signup {
  background: linear-gradient(135deg, #F5EFE6 0%, #FFF8F0 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 40px 24px;
}

.newsletter-signup h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.email-input {
  flex: 1 1 280px;
  padding: 14px 20px;
  border: 2px solid #7BA882;
  border-radius: 30px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
}

.email-input:focus {
  outline: none;
  border-color: #2D5F4C;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  list-style: none;
}

.newsletter-benefits li {
  color: #666;
  font-size: 15px;
}

/* ========================================
   WELLNESS PROGRAMMES PAGE
   ======================================== */
.programme-intro {
  padding: 60px 20px;
  text-align: center;
}

.programme-intro p {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
}

.programmes {
  padding: 60px 20px;
}

.programme-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  margin-bottom: 32px;
  position: relative;
}

.programme-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E8B86D;
  color: #2D5F4C;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.programme-card h2 {
  color: #2D5F4C;
  font-size: 28px;
  margin-bottom: 8px;
}

.programme-card .tagline {
  color: #7BA882;
  font-style: italic;
  margin-bottom: 16px;
}

.programme-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #E8B86D;
  display: block;
  margin: 16px 0;
}

.programme-card .savings {
  font-size: 16px;
  color: #7BA882;
  font-weight: 600;
  margin-left: 12px;
}

.programme-card ul {
  margin: 24px 0;
  padding-left: 20px;
}

.programme-card ul li {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.programme-timeline {
  background-color: #F5EFE6;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
}

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

.phase {
  flex: 1 1 220px;
  max-width: 260px;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 95, 76, 0.08);
  text-align: center;
}

.phase h3 {
  color: #2D5F4C;
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-intro {
  padding: 40px 20px;
  text-align: center;
}

.contact-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
}

.contact-info {
  padding: 60px 20px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
}

.contact-card h3 {
  color: #2D5F4C;
  margin-bottom: 16px;
}

.consultation-info {
  background-color: #F5EFE6;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
}

.consultation-info h2 {
  text-align: center;
  margin-bottom: 24px;
}

.consultation-info > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 17px;
}

.consultation-info h3 {
  margin: 32px 0 16px;
  text-align: center;
}

.consultation-info ul {
  max-width: 700px;
  margin: 0 auto 32px;
  padding-left: 20px;
}

.consultation-info ul li {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.consultation-info .btn {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
}

.map-section {
  padding: 60px 20px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.map-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.map-section ul {
  max-width: 500px;
  margin: 24px auto;
  padding-left: 20px;
}

.map-section ul li {
  color: #666;
  margin-bottom: 8px;
}

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

.legal-content h2 {
  color: #2D5F4C;
  font-size: 28px;
  margin: 32px 0 16px;
}

.legal-content h3 {
  color: #2D5F4C;
  font-size: 20px;
  margin: 24px 0 12px;
}

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

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

.legal-content ul li {
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-message {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #7BA882;
  color: #FFF8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(123, 168, 130, 0.3);
}

.success-message h1 {
  color: #2D5F4C;
  font-size: 42px;
  margin-bottom: 16px;
}

.success-message .subtitle {
  font-size: 20px;
  color: #7BA882;
  font-weight: 600;
  margin-bottom: 24px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #F5EFE6;
  border-radius: 24px;
  margin: 40px 24px;
}

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

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

.step-card {
  flex: 1 1 260px;
  max-width: 320px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 95, 76, 0.08);
  text-align: center;
}

.step-card .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #E8B86D;
  color: #2D5F4C;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.additional-resources {
  padding: 60px 20px;
}

.additional-resources h2 {
  text-align: center;
  margin-bottom: 24px;
}

.additional-resources > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 95, 76, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 76, 0.15);
}

.resource-card h3 {
  color: #2D5F4C;
  margin-bottom: 12px;
}

.resource-card p {
  color: #666;
  margin-bottom: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  color: #333;
  margin: 0;
  font-size: 15px;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

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

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

.cookie-settings-content {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-settings-content h2 {
  color: #2D5F4C;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #F5EFE6;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 48px 20px;
    margin: 16px;
  }
  
  .page-hero {
    padding: 48px 20px;
  }
  
  /* Cards & Grids */
  .value-cards {
    flex-direction: column;
    gap: 20px;
  }
  
  .value-card {
    max-width: 100%;
  }
  
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .benefits-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .benefit-item {
    max-width: 100%;
  }
  
  .steps-timeline {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 48px 20px;
    margin: 40px 16px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Blog/Articles */
  .category-filters {
    justify-content: flex-start;
  }
  
  .article-featured {
    padding: 32px 24px;
  }
  
  .articles-grid {
    flex-direction: column;
  }
  
  .article-card {
    max-width: 100%;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  /* Programmes */
  .programme-card {
    padding: 24px;
  }
  
  .programme-card .badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
  
  .timeline {
    flex-direction: column;
  }
  
  .phase {
    max-width: 100%;
  }
  
  /* Contact */
  .contact-cards {
    flex-direction: column;
  }
  
  .contact-card {
    max-width: 100%;
  }
  
  /* Legal */
  .legal-content {
    padding: 40px 20px;
  }
  
  /* Thank You */
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .success-message h1 {
    font-size: 32px;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .resource-links {
    flex-direction: column;
  }
  
  .resource-card {
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner p {
    flex: 1 1 100%;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  .cookie-settings-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   TABLET ADJUSTMENTS
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 20px);
  }
}

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

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease;
}

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

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

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-settings-modal {
    display: none !important;
  }
  
  body {
    background-color: #fff;
  }
  
  .site-header {
    position: static;
  }
}

/* ========================================
   END OF CSS
   ======================================== */