/* =====================================================
   POWERED SURGE - ELEGANT CLASSIC DESIGN SYSTEM
   Serif typography, muted colors, refined spacing
   ===================================================== */

/* =====================================================
   CSS RESET & NORMALIZE
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
}

/* =====================================================
   TYPOGRAPHY - ELEGANT CLASSIC STYLE
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baskerville', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

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

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

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

.subheadline {
  font-size: 18px;
  line-height: 1.8;
  color: #5a5a5a;
  font-style: italic;
}

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

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

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd4c8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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;
}

.main-nav a {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 15px;
  color: #2c2c2c;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  color: #8b4513;
}

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

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

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2c2c2c;
  color: #faf8f5;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8b4513;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  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: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8b4513;
}

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

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

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

/* =====================================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ===================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 15px;
  letter-spacing: 1px;
  border: 2px solid #2c2c2c;
  background-color: transparent;
  color: #2c2c2c;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 8px 8px 8px 0;
}

.btn:hover {
  background-color: #2c2c2c;
  color: #faf8f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-primary:hover {
  background-color: #6b3410;
  border-color: #6b3410;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  border-color: #8b4513;
  color: #8b4513;
}

.btn-secondary:hover {
  background-color: #8b4513;
  color: #ffffff;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */
.hero {
  background: linear-gradient(to bottom, #faf8f5 0%, #f0ebe3 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd4c8;
}

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

.hero h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.hero .subheadline {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #ddd4c8;
}

.trust-indicators span {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 14px;
  color: #5a5a5a;
  letter-spacing: 0.5px;
}

.hero-page {
  background: linear-gradient(to bottom, #faf8f5 0%, #f0ebe3 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd4c8;
}

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

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

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background-color: #ffffff;
  padding: 50px 20px;
  border-bottom: 1px solid #ddd4c8;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-item h3 {
  font-size: 42px;
  color: #8b4513;
  margin-bottom: 8px;
  font-weight: 400;
}

.stat-item p {
  font-size: 14px;
  color: #5a5a5a;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* =====================================================
   SERVICES SECTIONS
   ===================================================== */
.services-overview {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #5a5a5a;
}

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

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

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

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #5a5a5a;
}

.service-card .price {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 18px;
  color: #8b4513;
  font-weight: 600;
  display: block;
  margin-top: auto;
}

.services-overview > .container > .btn {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

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

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.value-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.value-item p {
  color: #5a5a5a;
  line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS - LIGHT BACKGROUNDS FOR READABILITY
   ===================================================== */
.testimonials {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  border-left: 4px solid #8b4513;
  margin-bottom: 20px;
}

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

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #ddd4c8;
}

.client-info strong {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.client-info span {
  font-size: 14px;
  color: #5a5a5a;
}

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

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

.cta-banner p {
  color: #e8e0d5;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-banner .btn {
  border-color: #faf8f5;
  color: #faf8f5;
}

.cta-banner .btn:hover {
  background-color: #faf8f5;
  color: #2c2c2c;
}

.cta-banner .btn-primary {
  background-color: #8b4513;
  border-color: #8b4513;
  color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background-color: #6b3410;
  border-color: #6b3410;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background-color: #2c2c2c;
  color: #e8e0d5;
  padding: 50px 20px 30px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #4a4a4a;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-column h4 {
  font-size: 16px;
  color: #faf8f5;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  color: #c4bdb0;
  line-height: 1.8;
}

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

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

.footer-column nav a:hover {
  color: #faf8f5;
  padding-left: 4px;
}

.footer-column a {
  color: #c4bdb0;
}

.footer-column a:hover {
  color: #faf8f5;
}

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

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

.footer-legal a {
  font-size: 13px;
  color: #c4bdb0;
}

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

.footer-bottom p {
  font-size: 13px;
  color: #8a8278;
  margin: 0;
}

/* =====================================================
   ABOUT PAGE SPECIFIC
   ===================================================== */
.story {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.story p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #3a3a3a;
}

.mission-vision {
  padding: 60px 20px;
  background-color: #f0ebe3;
}

.mission-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.mission-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  margin-bottom: 20px;
}

.mission-card h3 {
  color: #8b4513;
  margin-bottom: 16px;
}

.values {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #ddd4c8;
}

.values h3 {
  margin-bottom: 24px;
  color: #1a1a1a;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values li {
  font-size: 16px;
  color: #5a5a5a;
  padding-left: 24px;
  position: relative;
}

.values li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-size: 20px;
}

.team {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.team-member .title {
  font-size: 15px;
  color: #8b4513;
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

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

.achievements {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.achievements-list {
  max-width: 700px;
  margin: 0 auto;
}

.achievements-list li {
  font-size: 16px;
  color: #3a3a3a;
  padding: 16px 0;
  padding-left: 32px;
  border-bottom: 1px solid #e8e0d5;
  position: relative;
}

.achievements-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: bold;
  font-size: 18px;
}

.location {
  padding: 60px 20px;
  background-color: #f0ebe3;
  text-align: center;
}

.location h2 {
  margin-bottom: 24px;
}

.location p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #5a5a5a;
}

.location .address {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 18px;
  color: #2c2c2c;
  margin-top: 32px;
  line-height: 1.8;
}

/* =====================================================
   SERVICES PAGE SPECIFIC
   ===================================================== */
.services-list {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.service-detail {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid #ddd4c8;
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-detail p {
  font-size: 16px;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.service-detail .price {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 22px;
  color: #8b4513;
  font-weight: 600;
  display: block;
  margin: 24px 0;
}

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

.service-detail li {
  font-size: 15px;
  color: #3a3a3a;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
}

.service-detail li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-size: 20px;
}

/* =====================================================
   WORKSHOPS PAGE SPECIFIC
   ===================================================== */
.workshop-benefits {
  padding: 60px 20px;
  background-color: #ffffff;
}

.workshop-benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

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

.benefit-item p {
  font-size: 15px;
  color: #5a5a5a;
}

.workshops-catalog {
  padding: 60px 20px;
  background-color: #f0ebe3;
}

.workshops-catalog h2 {
  text-align: center;
  margin-bottom: 48px;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workshop-item {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-item h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.workshop-item .duration {
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 16px;
  color: #8b4513;
  font-weight: 600;
  margin-bottom: 12px;
}

.workshop-item p {
  font-size: 15px;
  color: #5a5a5a;
}

.instructors {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.instructors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.instructor {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  text-align: center;
  margin-bottom: 20px;
}

.instructor h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.instructor .title {
  font-size: 14px;
  color: #8b4513;
  font-style: italic;
  margin-bottom: 12px;
  display: block;
}

.instructor p {
  font-size: 14px;
  color: #5a5a5a;
}

/* =====================================================
   PORTFOLIO PAGE SPECIFIC
   ===================================================== */
.portfolio-stats {
  padding: 60px 20px;
  background-color: #ffffff;
}

.featured-projects {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.featured-projects h2 {
  text-align: center;
  margin-bottom: 48px;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.project-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  margin-bottom: 20px;
}

.project-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.project-card .category {
  font-size: 14px;
  color: #8b4513;
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.project-card p {
  font-size: 15px;
  color: #5a5a5a;
  margin-bottom: 20px;
}

.project-card .results {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e0d5;
}

.project-card .results li {
  font-size: 14px;
  color: #3a3a3a;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.project-card .results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: bold;
}

.portfolio-categories {
  padding: 60px 20px;
  background-color: #f0ebe3;
}

.portfolio-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  margin-bottom: 20px;
}

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

.category-item p {
  font-size: 14px;
  color: #5a5a5a;
}

/* =====================================================
   RESOURCES PAGE SPECIFIC
   ===================================================== */
.resource-categories {
  padding: 60px 20px;
  background-color: #ffffff;
}

.resource-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #faf8f5;
  padding: 32px;
  border: 1px solid #ddd4c8;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

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

.category-card p {
  font-size: 14px;
  color: #5a5a5a;
}

.featured-resources {
  padding: 60px 20px;
  background-color: #f0ebe3;
}

.featured-resources h2 {
  text-align: center;
  margin-bottom: 48px;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resource-item {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.resource-item .type {
  font-size: 14px;
  color: #8b4513;
  font-style: italic;
}

.resource-item p {
  font-size: 15px;
  color: #5a5a5a;
}

.resource-item .downloads {
  font-size: 13px;
  color: #8a8278;
}

.blog {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.post-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  margin-bottom: 20px;
}

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

.post-card .category {
  font-size: 13px;
  color: #8b4513;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.post-card .date {
  font-size: 13px;
  color: #8a8278;
  margin-bottom: 16px;
  display: block;
}

.post-card p {
  font-size: 15px;
  color: #5a5a5a;
}

.newsletter {
  padding: 60px 20px;
  background-color: #ffffff;
  border-top: 1px solid #ddd4c8;
  border-bottom: 1px solid #ddd4c8;
}

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

.newsletter > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #5a5a5a;
}

.newsletter-benefits {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-benefits li {
  font-size: 15px;
  color: #3a3a3a;
  padding-left: 28px;
  position: relative;
}

.newsletter-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: bold;
}

/* =====================================================
   CONTACT PAGE SPECIFIC
   ===================================================== */
.contact-methods {
  padding: 60px 20px;
  background-color: #ffffff;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #faf8f5;
  padding: 32px;
  border: 1px solid #ddd4c8;
  text-align: center;
  margin-bottom: 20px;
}

.method-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.method-card p {
  font-size: 15px;
  color: #5a5a5a;
}

.method-card a {
  color: #8b4513;
}

.method-card a:hover {
  text-decoration: underline;
}

.method-card .note {
  font-size: 13px;
  color: #8a8278;
  font-style: italic;
  margin-top: 12px;
}

.contact-info {
  padding: 60px 20px;
  background-color: #f0ebe3;
}

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

.contact-info > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #5a5a5a;
}

.contact-details {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
}

.contact-details p {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.contact-details strong {
  font-family: 'Baskerville', 'Georgia', serif;
  color: #1a1a1a;
}

.contact-details a {
  color: #8b4513;
}

.contact-details a:hover {
  text-decoration: underline;
}

.team-contact {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.faq {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #e8e0d5;
}

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

.faq-item p {
  font-size: 15px;
  color: #5a5a5a;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #8a8278;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border: 1px solid #ddd4c8;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.legal-content a {
  color: #8b4513;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* =====================================================
   THANK YOU PAGE
   ===================================================== */
.thank-you-hero {
  background: linear-gradient(to bottom, #faf8f5 0%, #f0ebe3 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd4c8;
}

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

.thank-you-hero p {
  font-size: 18px;
  color: #5a5a5a;
  max-width: 600px;
  margin: 0 auto 16px;
}

.thank-you-hero .confirmation {
  font-size: 16px;
  color: #8b4513;
  font-style: italic;
}

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

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

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

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

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #8b4513;
  color: #ffffff;
  font-family: 'Baskerville', 'Georgia', serif;
  font-size: 20px;
  margin-bottom: 20px;
}

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

.step-item p {
  font-size: 15px;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.step-item .timeframe {
  font-size: 13px;
  color: #8b4513;
  font-style: italic;
}

.while-you-wait {
  padding: 60px 20px;
  background-color: #f0ebe3;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 16px;
}

.while-you-wait > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #5a5a5a;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #ddd4c8;
  margin-bottom: 20px;
}

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

.resource-card p {
  font-size: 15px;
  color: #5a5a5a;
}

.testimonial {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.return-home {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #faf8f5;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

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

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

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  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%;
  padding: 40px;
  border-radius: 0;
  border: 1px solid #ddd4c8;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2c2c2c;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

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

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

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

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

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

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

.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 {
  cursor: not-allowed;
  opacity: 0.5;
}

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

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ===================================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 40px; }
  .hero .subheadline { font-size: 17px; }
  .hero-page h1 { font-size: 36px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  header .container {
    justify-content: center;
  }
  
  /* Sections */
  .section { padding: 32px 16px; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero-page { padding: 48px 20px; }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin: 8px 0;
  }
  
  /* Grids - Stack on mobile */
  .services-grid,
  .values-grid,
  .testimonials-grid,
  .team-grid,
  .project-list,
  .categories-grid,
  .benefits-grid,
  .instructors-grid,
  .blog-posts,
  .methods-grid,
  .resources-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .service-card,
  .value-item,
  .testimonial-card,
  .team-member,
  .project-card,
  .category-item,
  .benefit-item,
  .instructor,
  .post-card,
  .method-card,
  .resource-card,
  .step-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Mission grid */
  .mission-grid {
    flex-direction: column;
  }
  
  .mission-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Legal content */
  .legal-content {
    padding: 32px 20px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 auto;
  }
  
  .cookie-modal-content {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  .hero-page h1 { font-size: 32px; }
  
  .mobile-menu {
    width: 90%;
    max-width: none;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .value-item,
  .project-card,
  .category-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .team-member,
  .instructor,
  .method-card {
    flex: 1 1 calc(50% - 32px);
  }
}