/* ============================================
   CLEARRENEW - ELEGANT CLASSIC DESIGN SYSTEM
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* ELEGANT CLASSIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #17252A;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 32px;
}

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

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

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #17252A;
}

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

/* HEADER STYLING */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e5e0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 400;
  color: #17252A;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #2B7A78;
  border-bottom-color: #2B7A78;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 150;
  background-color: #2B7A78;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #17252A;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #17252A;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2B7A78;
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #17252A;
  padding: 12px 0;
  border-bottom: 1px solid #e8e5e0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #17252A;
  border-color: #17252A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2B7A78;
  border-color: #2B7A78;
}

.btn-secondary:hover {
  background-color: #2B7A78;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.2);
}

.header-cta .btn-primary {
  padding: 12px 24px;
  font-size: 13px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #f5f2ed 0%, #e8e5e0 100%);
  padding: 100px 20px 80px;
  text-align: center;
  border-bottom: 1px solid #d4cfca;
  margin-bottom: 60px;
}

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

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

.hero-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* SECTION STYLING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  color: #17252A;
}

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

/* INTRO SECTION */
.intro-section {
  background-color: #ffffff;
  padding: 80px 20px;
  border-top: 1px solid #e8e5e0;
  border-bottom: 1px solid #e8e5e0;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-item h3 {
  font-size: 48px;
  color: #2B7A78;
  margin-bottom: 8px;
  font-weight: 300;
}

.stat-item p {
  font-size: 16px;
  color: #4a4a4a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICES SECTION */
.services-section {
  background-color: #faf8f5;
  padding: 80px 20px;
}

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

.service-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #2B7A78;
}

.service-card h3 {
  font-size: 22px;
  color: #17252A;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  color: #2B7A78;
  font-weight: 600;
  font-family: 'Georgia', serif;
  margin-top: 16px;
}

/* BENEFITS SECTION */
.benefits-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.benefit-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background-color: #faf8f5;
  border-left: 3px solid #2B7A78;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: #f5f2ed;
  transform: translateX(4px);
}

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

.benefit-item p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: #f5f2ed;
  padding: 80px 20px;
}

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

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px;
  border-radius: 2px;
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: #2B7A78;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e8e5e0;
  padding-top: 16px;
  margin-top: 8px;
}

.testimonial-author strong {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #17252A;
  font-weight: 600;
}

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

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 80px 0 0;
}

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

.cta-banner p {
  color: #e8e5e0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #2B7A78;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background-color: #faf8f5;
  border-color: #faf8f5;
  color: #17252A;
}

.cta-banner .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-banner .btn-secondary:hover {
  background-color: #ffffff;
  color: #2B7A78;
}

/* FOOTER */
footer {
  background-color: #17252A;
  color: #d4cfca;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 1px solid #2B7A78;
}

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

.footer-section {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #b8b3ae;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid #2B7A78;
  padding-top: 24px;
  text-align: center;
}

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

/* WORKSHOP CARDS */
.workshops-section {
  padding: 60px 20px;
}

.workshop-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.workshop-card h3 {
  font-size: 26px;
  color: #17252A;
  margin-bottom: 12px;
}

.workshop-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
}

.workshop-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e5e0;
}

.workshop-details .price {
  font-size: 28px;
  color: #2B7A78;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.workshop-details span {
  font-size: 14px;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PRICING SECTION */
.pricing-section {
  background-color: #faf8f5;
  padding: 80px 20px;
}

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

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #e8e5e0;
  padding: 48px 32px;
  border-radius: 2px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

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

.pricing-card.featured {
  border-color: #2B7A78;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.15);
}

.pricing-card h3 {
  font-size: 24px;
  color: #17252A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-large {
  font-size: 48px;
  color: #2B7A78;
  font-weight: 300;
  font-family: 'Georgia', serif;
  margin: 16px 0;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 24px;
}

.pricing-card li {
  font-size: 15px;
  color: #5a5a5a;
  padding-left: 24px;
  position: relative;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: bold;
}

/* PROGRAMME SECTIONS */
.programme-intro,
.programme-levels,
.programme-categories {
  padding: 60px 20px;
}

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

.programme-card,
.category-item {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.programme-card:hover,
.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.programme-card.featured {
  border-color: #2B7A78;
  border-width: 2px;
}

.duration {
  font-size: 14px;
  color: #2B7A78;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.programme-card .price {
  font-size: 32px;
  color: #2B7A78;
  font-family: 'Georgia', serif;
  margin: 16px 0;
}

/* GALLERY SECTIONS */
.gallery-intro,
.featured-projects {
  padding: 60px 20px;
}

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

.project-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.project-card h3 {
  font-size: 22px;
  color: #17252A;
  margin-bottom: 8px;
}

.project-card p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
}

/* BLOG SECTIONS */
.featured-posts,
.blog-posts {
  padding: 60px 20px;
}

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

.post-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px;
  border-radius: 2px;
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.post-card.featured {
  border-color: #2B7A78;
  border-width: 2px;
}

.category {
  font-size: 12px;
  color: #2B7A78;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.post-card h3 {
  font-size: 24px;
  color: #17252A;
  margin-bottom: 12px;
}

.date {
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 8px;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.post-item {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.post-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background-color: #f5f2ed;
  padding: 80px 20px;
  text-align: center;
}

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

.newsletter-benefits span {
  font-size: 14px;
  color: #5a5a5a;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CONTACT SECTIONS */
.contact-options,
.contact-form-section,
.location-section {
  padding: 60px 20px;
}

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

.option-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.option-card h3 {
  font-size: 22px;
  color: #17252A;
  margin-bottom: 12px;
}

.contact-link {
  color: #2B7A78;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

/* FORM STYLING */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  color: #17252A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid #d4cfca;
  border-radius: 2px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #2c2c2c;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2B7A78;
  box-shadow: 0 0 0 3px rgba(43, 122, 120, 0.1);
}

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

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

.location-info {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-info h3 {
  font-size: 22px;
  color: #17252A;
  margin-bottom: 16px;
  border-bottom: 2px solid #2B7A78;
  padding-bottom: 8px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #e8e5e0 0%, #d4cfca 100%);
  padding: 80px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  font-size: 28px;
  color: #17252A;
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: left;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 24px;
}

/* ERROR PAGE */
.error-hero {
  background: linear-gradient(135deg, #f5f2ed 0%, #e8e5e0 100%);
}

.error-section {
  padding: 60px 20px;
  text-align: center;
}

.error-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.error-code {
  font-size: 120px;
  color: #2B7A78;
  font-family: 'Georgia', serif;
  font-weight: 300;
  line-height: 1;
  opacity: 0.3;
}

.helpful-links-section {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.link-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 32px 24px;
  border-radius: 2px;
  flex: 1 1 240px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.link-card h3 {
  font-size: 20px;
  color: #17252A;
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  color: #ffffff;
}

.thank-you-hero h1,
.thank-you-hero p {
  color: #ffffff;
}

.confirmation-section {
  padding: 80px 20px;
  text-align: center;
}

.confirmation-steps,
.next-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step-item,
.next-step-card {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 32px 24px;
  border-radius: 2px;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-item h3,
.next-step-card h3 {
  font-size: 20px;
  color: #2B7A78;
  margin-bottom: 8px;
}

.thank-you-message {
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 18px;
  font-style: italic;
  color: #2B7A78;
}

.next-steps {
  background-color: #faf8f5;
  padding: 80px 20px;
}

.quick-links-section {
  padding: 60px 20px;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.quick-links-grid .link-card {
  flex: 1 1 180px;
  padding: 24px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #17252A;
  color: #ffffff;
  padding: 24px 32px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  font-size: 14px;
  color: #d4cfca;
  margin: 0;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #2B7A78;
  color: #ffffff;
  border-color: #2B7A78;
}

.cookie-btn-accept:hover {
  background-color: #1f5a58;
  border-color: #1f5a58;
}

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

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background-color: #ffffff;
  color: #17252A;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px 40px;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #17252A;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

.cookie-modal h3 {
  font-size: 28px;
  color: #17252A;
  margin-bottom: 24px;
}

.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.cookie-preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background-color: #faf8f5;
  border: 1px solid #e8e5e0;
  border-radius: 2px;
}

.cookie-preference-info {
  flex: 1;
}

.cookie-preference h4 {
  font-size: 16px;
  color: #17252A;
  margin-bottom: 4px;
}

.cookie-preference p {
  font-size: 13px;
  color: #5a5a5a;
  margin: 0;
}

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

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

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

.cookie-toggle-slider {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 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-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
}

/* STORY & MISSION SECTIONS */
.story-section,
.mission-section,
.values-section,
.team-section {
  padding: 60px 20px;
}

.story-section {
  background-color: #ffffff;
}

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

.mission-item,
.value-item {
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item {
  flex: 1 1 calc(50% - 16px);
  max-width: 500px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero-section h1 {
    font-size: 40px;
  }
  
  .hero-section p {
    font-size: 16px;
  }
  
  /* Container padding */
  .container {
    padding: 0 20px;
  }
  
  /* Header mobile */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero section */
  .hero-section {
    padding: 60px 20px 50px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .intro-section {
    padding: 60px 20px;
  }
  
  /* Stats grid */
  .stats-grid {
    gap: 40px;
  }
  
  /* Grids to single column */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .workshops-section,
  .pricing-grid,
  .programme-grid,
  .categories-grid,
  .projects-grid,
  .posts-grid,
  .options-grid,
  .location-grid,
  .links-grid,
  .confirmation-steps,
  .next-steps-grid,
  .mission-grid,
  .values-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .workshop-card,
  .pricing-card,
  .programme-card,
  .category-item,
  .project-card,
  .post-card,
  .option-card,
  .location-info,
  .link-card,
  .step-item,
  .next-step-card,
  .mission-item,
  .value-item {
    max-width: 100%;
    width: 100%;
  }
  
  .benefit-item {
    flex: 1 1 100%;
  }
  
  /* Workshop details wrap */
  .workshop-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 60px 20px;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 32px 24px;
    margin: 20px;
  }
  
  .cookie-preference {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  /* Error page */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  /* Further scale typography */
  h1 {
    font-size: 28px;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Reduce padding */
  .service-card,
  .testimonial-card,
  .workshop-card,
  .pricing-card,
  .programme-card,
  .option-card,
  .project-card,
  .post-card {
    padding: 24px 20px;
  }
  
  .hero-section {
    padding: 50px 16px 40px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  /* Mobile menu */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu-toggle {
    right: 16px;
  }
  
  /* Cookie banner text size */
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* TABLET BREAKPOINT */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  
  .service-card,
  .benefit-item,
  .programme-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .testimonial-card,
  .post-card {
    flex: 1 1 calc(50% - 16px);
  }
}

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

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

.mobile-menu.active {
  animation: slideInFromRight 0.4s ease;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  .container {
    max-width: 100%;
  }
}