/* ============================================
   WISE EMBER - WARM & FRIENDLY DESIGN SYSTEM
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #3D2817;
  background-color: #FFFBF7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C1810;
  margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

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

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

a:hover {
  color: #B85A1F;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

li {
  margin-bottom: 12px;
  color: #4A3426;
}

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

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

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

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

/* ============================================
   BUTTONS - WARM & INVITING
   ============================================ */

.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 118, 60, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #D4763C 0%, #B85A1F 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B85A1F 0%, #8B4416 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 118, 60, 0.35);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFF8F2;
  color: #D4763C;
  border: 2px solid #D4763C;
  box-shadow: 0 4px 12px rgba(212, 118, 60, 0.15);
}

.btn-secondary:hover {
  background-color: #D4763C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 118, 60, 0.3);
}

.btn {
  background-color: #2C5F6F;
  color: #FFFFFF;
}

.btn:hover {
  background-color: #234A56;
  transform: translateY(-2px);
  color: #FFFFFF;
}

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

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(44, 95, 111, 0.08);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.main-nav a {
  color: #2C5F6F;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #D4763C;
  background-color: #FFF8F2;
}

/* ============================================
   MOBILE MENU - SMOOTH SLIDE ANIMATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D4763C 0%, #B85A1F 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212, 118, 60, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 118, 60, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F2 100%);
  z-index: 2500;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #2C5F6F;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

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

/* ============================================
   HERO SECTIONS - WELCOMING & WARM
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FFF8F2 0%, #F4E4D7 100%);
  padding: 80px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(212, 118, 60, 0.1);
}

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

.hero .subheadline {
  font-size: 20px;
  color: #4A3426;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

/* ============================================
   CTA BUTTONS SECTION
   ============================================ */

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: flex-start;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #F4E4D7;
}

.trust-indicators span {
  color: #2C5F6F;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span:before {
  content: '✓';
  color: #D4763C;
  font-weight: bold;
  font-size: 20px;
}

/* ============================================
   CARDS & SERVICES - FRIENDLY DESIGN
   ============================================ */

.services-grid,
.benefits-grid,
.content-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.service-card,
.course-card,
.benefit,
.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(44, 95, 111, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.course-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 118, 60, 0.15);
}

.service-card h3,
.course-card h3 {
  color: #2C5F6F;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.course-card p {
  color: #4A3426;
  margin-bottom: 20px;
  line-height: 1.7;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #D4763C;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

.duration {
  display: block;
  color: #2C5F6F;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================
   TESTIMONIALS - WARM & TRUSTWORTHY
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #FFF8F2 0%, #F4E4D7 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(44, 95, 111, 0.1);
  border-left: 4px solid #D4763C;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card .author {
  color: #2C5F6F;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  display: block;
  margin-top: 12px;
}

.testimonial-card .outcome {
  color: #D4763C;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
}

/* ============================================
   STATS & METRICS
   ============================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 111, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #D4763C;
  font-family: 'Playfair Display', serif;
  display: block;
}

.stat .label {
  font-size: 16px;
  color: #2C5F6F;
  font-weight: 500;
  display: block;
}

.hero .stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #F4E4D7;
}

.hero .stats span {
  color: #2C5F6F;
  font-weight: 600;
  font-size: 16px;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 111, 0.08);
  flex-wrap: wrap;
}

.step .number {
  background: linear-gradient(135deg, #D4763C 0%, #B85A1F 100%);
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 118, 60, 0.3);
}

.step h3 {
  color: #2C5F6F;
  margin-bottom: 12px;
  flex: 1;
  min-width: 200px;
}

.step p {
  color: #4A3426;
  line-height: 1.7;
  flex-basis: 100%;
}

/* ============================================
   PILLARS & VALUES
   ============================================ */

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 111, 0.08);
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 118, 60, 0.15);
}

.pillar h3 {
  color: #D4763C;
  margin-bottom: 16px;
}

.pillar p {
  color: #4A3426;
  line-height: 1.7;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.values li {
  background: #FFF8F2;
  padding: 16px 24px;
  border-radius: 25px;
  color: #2C5F6F;
  font-weight: 600;
  border: 2px solid #F4E4D7;
}

/* ============================================
   BLOG & CONTENT CARDS
   ============================================ */

.post-card,
.category-card,
.option-card,
.suggestion-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(44, 95, 111, 0.08);
  transition: all 0.3s ease;
}

.post-card:hover,
.category-card:hover,
.option-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 118, 60, 0.15);
}

.post-card h3,
.category-card h3,
.option-card h3,
.suggestion-card h3 {
  color: #2C5F6F;
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  background: #F4E4D7;
  color: #D4763C;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.read-time,
.meta {
  color: #2C5F6F;
  font-size: 14px;
  font-weight: 500;
}

.categories-grid,
.options-grid,
.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

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

.faq-item {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(44, 95, 111, 0.08);
  border-left: 4px solid #D4763C;
}

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

.faq-item p {
  color: #4A3426;
  line-height: 1.7;
}

/* ============================================
   FORMS & INPUTS
   ============================================ */

.form-note {
  background: #FFF8F2;
  padding: 20px;
  border-radius: 15px;
  margin-top: 24px;
  border-left: 4px solid #D4763C;
}

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

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

.final-cta,
.cta {
  background: linear-gradient(135deg, #D4763C 0%, #B85A1F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(212, 118, 60, 0.3);
}

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

.final-cta p,
.cta p {
  color: #FFF8F2;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  font-size: 14px;
  color: #FFF8F2;
  margin-top: 24px;
  font-style: italic;
}

/* ============================================
   FOOTER - WARM & INFORMATIVE
   ============================================ */

footer {
  background: linear-gradient(180deg, #2C5F6F 0%, #1E4452 100%);
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 250px;
}

.footer-col h4 {
  color: #F4E4D7;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-col p,
.footer-col a {
  color: #E8D4C6;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

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

.footer-col nav a:hover {
  color: #F4E4D7;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 228, 215, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #E8D4C6;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #F4E4D7;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #D4763C;
}

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

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

.cookie-banner p {
  color: #4A3426;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #D4763C 0%, #B85A1F 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 118, 60, 0.3);
}

.cookie-reject,
.cookie-settings {
  background: #FFF8F2;
  color: #2C5F6F;
  border: 2px solid #F4E4D7;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: #F4E4D7;
}

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

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal h2 {
  color: #2C5F6F;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #FFF8F2;
  border-radius: 15px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category h3 {
  color: #2C5F6F;
  font-size: 18px;
  margin: 0;
}

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

.cookie-toggle {
  width: 50px;
  height: 28px;
  background: #ddd;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #D4763C;
}

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

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

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

/* ============================================
   POLICY PAGES SPECIFIC STYLES
   ============================================ */

.policy-content,
.gdpr-content,
.cookies-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section,
.gdpr-section,
.cookies-section,
.terms-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(44, 95, 111, 0.08);
}

.policy-section h2,
.gdpr-section h2,
.cookies-section h2,
.terms-section h2 {
  color: #2C5F6F;
  margin-bottom: 16px;
}

.policy-section p,
.gdpr-section p,
.cookies-section p,
.terms-section p {
  color: #4A3426;
  line-height: 1.8;
}

.last-updated {
  color: #2C5F6F;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
}

/* ============================================
   PROBLEM/SOLUTION SECTIONS
   ============================================ */

.problem,
.solution {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(44, 95, 111, 0.08);
}

.problem h2 {
  color: #D4763C;
}

.solution h2 {
  color: #2C5F6F;
}

.problem ul,
.solution ul {
  list-style: none;
  padding: 0;
}

.problem li,
.solution li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.problem li:before {
  content: '×';
  position: absolute;
  left: 0;
  color: #D4763C;
  font-size: 24px;
  font-weight: bold;
}

.solution li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F6F;
  font-size: 20px;
  font-weight: bold;
}

/* ============================================
   TEXT + IMAGE SECTIONS
   ============================================ */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
}

/* ============================================
   FEATURE ITEMS
   ============================================ */

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(44, 95, 111, 0.08);
  margin-bottom: 20px;
}

/* ============================================
   SPECIAL SECTIONS
   ============================================ */

.mission-text {
  font-size: 24px;
  line-height: 1.6;
  color: #2C5F6F;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  padding: 32px;
  background: #FFF8F2;
  border-radius: 20px;
}

.confirmation-message {
  font-size: 20px;
  color: #2C5F6F;
  text-align: center;
  margin-top: 24px;
}

.phone {
  font-size: 28px;
  font-weight: 700;
  color: #D4763C;
  text-align: center;
  margin: 20px 0;
}

.hours,
.address {
  text-align: center;
  color: #4A3426;
  line-height: 1.8;
}

.note {
  background: #FFF8F2;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #D4763C;
  margin: 20px 0;
  color: #4A3426;
  font-size: 14px;
}

/* ============================================
   POST LIST
   ============================================ */

.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-list article {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(44, 95, 111, 0.08);
  transition: all 0.3s ease;
}

.post-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 118, 60, 0.15);
}

.post-list h3 {
  color: #2C5F6F;
  margin-bottom: 8px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter {
  background: linear-gradient(135deg, #FFF8F2 0%, #F4E4D7 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter h2 {
  color: #2C5F6F;
  margin-bottom: 16px;
}

.newsletter .benefits {
  color: #4A3426;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   CREDENTIALS LIST
   ============================================ */

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-top: 24px;
  justify-content: center;
}

.credentials li {
  background: #FFF8F2;
  padding: 16px 24px;
  border-radius: 25px;
  color: #2C5F6F;
  font-weight: 600;
  border: 2px solid #F4E4D7;
  margin: 0;
}

/* ============================================
   WHAT TO EXPECT LIST
   ============================================ */

.what-to-expect {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.what-to-expect li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #4A3426;
}

.what-to-expect li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4763C;
  font-size: 20px;
  font-weight: bold;
}

.availability {
  background: #FFF8F2;
  padding: 16px;
  border-radius: 12px;
  color: #2C5F6F;
  font-weight: 600;
  text-align: center;
  margin-top: 24px;
}

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 32px; }
  .hero .subheadline { font-size: 18px; }
  
  /* Stack cards vertically */
  .service-card,
  .course-card,
  .benefit,
  .card,
  .pillar,
  .stat,
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Stack CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Steps layout */
  .step {
    flex-direction: column;
  }
  
  .step .number {
    align-self: flex-start;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer stacks */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Reduce padding */
  section {
    padding: 30px 16px;
  }
  
  .hero {
    padding: 50px 20px;
  }
  
  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Stats grid mobile */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* Contact options */
  .options-grid,
  .suggestions {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .course-card,
  .benefit,
  .card,
  .pillar {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 3px solid #D4763C;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: #F4E4D7;
  color: #2C1810;
}

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

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