/* ===================================
   TIMELESS EXPANSE - GRADIENT MODERN STYLE
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - Gradient Modern
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a4459;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 24px;
  color: #1a4459;
}

h4 {
  font-size: 18px;
  color: #2C5F7C;
}

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

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

a:hover {
  color: #b8873d;
  text-decoration: none;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

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

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

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

/* ===================================
   HEADER - Gradient Modern
   =================================== */

header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(26, 68, 89, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #2C5F7C, #b8873d);
  border-image-slice: 1;
}

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

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

header nav a {
  font-size: 16px;
  font-weight: 500;
  color: #1a4459;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C5F7C, #b8873d);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(44, 95, 124, 0.4);
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
}

/* ===================================
   MOBILE MENU - Gradient Modern
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
  z-index: 1999;
  padding: 80px 40px 40px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  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: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 16px;
  color: #b8873d;
}

/* ===================================
   BUTTONS - Gradient Modern
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 95, 124, 0.4);
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2C5F7C;
  border: 2px solid #2C5F7C;
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 95, 124, 0.3);
}

button.btn-primary,
button.btn-secondary {
  width: auto;
}

/* ===================================
   HERO SECTIONS - Gradient Modern
   =================================== */

.hero {
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 50%, #1a4459 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 135, 61, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

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

.hero-simple {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #2C5F7C, #b8873d);
  border-image-slice: 1;
}

.hero-simple h1 {
  margin-bottom: 16px;
}

.hero-simple p {
  font-size: 18px;
  color: #4a4a4a;
}

/* ===================================
   CARDS & GRIDS - Gradient Modern
   =================================== */

.three-columns,
.services-grid,
.benefits-grid,
.workshop-cards,
.articles-grid,
.resources-grid,
.topics-grid,
.values-grid,
.team-grid,
.methodology-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.column,
.service-card,
.benefit-card,
.workshop-card,
.article-card,
.resource-card,
.topic-card,
.value,
.team-member,
.method-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 68, 89, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.column::before,
.service-card::before,
.benefit-card::before,
.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2C5F7C, #b8873d);
}

.column:hover,
.service-card:hover,
.benefit-card:hover,
.workshop-card:hover,
.article-card:hover,
.resource-card:hover,
.topic-card:hover,
.value:hover,
.team-member:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(26, 68, 89, 0.2);
}

.service-card h3,
.benefit-card h3,
.workshop-card h3,
.article-card h3,
.resource-card h3,
.topic-card h3,
.value h3,
.team-member h3,
.method-card h3 {
  margin-bottom: 16px;
  color: #1a4459;
}

.service-card .price,
.workshop-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

.workshop-card .availability {
  color: #b8873d;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.article-card .meta,
.workshop-card p strong {
  color: #8B7B6B;
  font-size: 14px;
  font-style: italic;
}

/* ===================================
   SECTION STYLES - Gradient Modern
   =================================== */

.value-proposition,
.services-overview,
.process,
.testimonials,
.cta-final,
.mission-vision,
.team,
.approach,
.location,
.cta-section,
.workshop-benefits,
.upcoming-workshops,
.workshop-topics,
.custom-workshop,
.featured-article,
.blog-categories,
.blog-grid,
.resources,
.expert-tips,
.newsletter,
.contact-options,
.contact-form-section,
.appointment-booking,
.location-info,
.faq-contact,
.emergency-info,
.trust-section {
  padding: 60px 20px;
  position: relative;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #8B7B6B;
  margin-bottom: 40px;
  font-style: italic;
}

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

/* ===================================
   TIMELINE / PROCESS - Gradient Modern
   =================================== */

.timeline,
.steps-simple {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2C5F7C 0%, #b8873d 100%);
}

.step {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(26, 68, 89, 0.1);
  margin-left: 20px;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  left: -53px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #2C5F7C 0%, #b8873d 100%);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.2);
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px rgba(26, 68, 89, 0.15);
}

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

.step p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS - Gradient Modern
   =================================== */

.testimonial-slider,
.testimonial-card {
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 68, 89, 0.15);
  border-left: 5px solid #b8873d;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(44, 95, 124, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 18px;
  color: #2d2d2d;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #2C5F7C;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
}

/* ===================================
   BADGES - Gradient Modern
   =================================== */

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #b8873d 0%, #d4a574 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(184, 135, 61, 0.3);
}

/* ===================================
   FAQ SECTION - Gradient Modern
   =================================== */

.faq,
.faq-contact {
  padding: 60px 20px;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(26, 68, 89, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #2C5F7C;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(26, 68, 89, 0.15);
  transform: translateX(4px);
}

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

.faq-item p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* ===================================
   CONTACT FORMS - Gradient Modern
   =================================== */

.form-display {
  max-width: 600px;
  margin: 40px auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 68, 89, 0.15);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #1a4459;
  margin-bottom: 8px;
  font-size: 16px;
}

.input-placeholder,
.select-placeholder,
.textarea-placeholder {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  min-height: 48px;
  transition: all 0.3s ease;
}

.textarea-placeholder {
  min-height: 120px;
}

.input-placeholder:hover,
.select-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #2C5F7C;
  box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-note,
.privacy-note {
  font-size: 14px;
  color: #8B7B6B;
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* ===================================
   BOOKING & APPOINTMENTS
   =================================== */

.booking-placeholder {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 68, 89, 0.15);
  margin-top: 40px;
  text-align: center;
}

.booking-placeholder ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.booking-placeholder li {
  background: #f8f9fa;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 4px solid #2C5F7C;
  transition: all 0.3s ease;
}

.booking-placeholder li:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

/* ===================================
   ADDRESS & LOCATION
   =================================== */

.address-block {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 68, 89, 0.15);
  margin-top: 40px;
  border-left: 5px solid #b8873d;
}

.address-block h3 {
  color: #1a4459;
  margin-bottom: 16px;
}

.address-block p {
  margin-bottom: 12px;
  color: #4a4a4a;
}

.address-block strong {
  color: #2C5F7C;
}

/* ===================================
   PRICE DISPLAY
   =================================== */

.price-display,
.pricing {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(44, 95, 124, 0.3);
}

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

.newsletter {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
}

.newsletter h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

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

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
}

.newsletter-form .btn-primary {
  background: linear-gradient(135deg, #b8873d 0%, #d4a574 100%);
}

.newsletter-form .btn-primary:hover {
  background: linear-gradient(135deg, #d4a574 0%, #b8873d 100%);
}

/* ===================================
   CATEGORY TABS
   =================================== */

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

.category-tabs button {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #2C5F7C;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #2C5F7C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tabs button:hover,
.category-tabs button.active {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

/* ===================================
   TRUST BADGES & INFO BLOCKS
   =================================== */

.trust-badge,
.response-info {
  text-align: center;
  color: #8B7B6B;
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

.trust-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
  border: 2px solid #2C5F7C;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.legal-content,
.impressum-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2,
.impressum-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
  text-align: left;
}

.legal-content h3,
.impressum-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.legal-links a {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #b8873d 0%, #d4a574 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(184, 135, 61, 0.4);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.thank-you-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

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

.next-steps,
.resources-waiting {
  padding: 60px 20px;
}

.quick-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   FOOTER - Gradient Modern
   =================================== */

footer {
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b8873d, #d4a574, #b8873d);
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #b8873d;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #b8873d;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4459 0%, #2C5F7C 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

#cookie-banner p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

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

#accept-cookies {
  background: linear-gradient(135deg, #b8873d 0%, #d4a574 100%);
  color: #ffffff;
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 135, 61, 0.4);
}

#reject-cookies {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

#cookie-settings {
  background: transparent;
  color: #b8873d;
  text-decoration: underline;
}

#cookie-settings:hover {
  color: #d4a574;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: #1a4459;
  margin-bottom: 24px;
}

.cookie-category {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #2C5F7C;
}

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

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #2d2d2d;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

#save-cookie-preferences,
#close-cookie-modal {
  flex: 1;
  min-width: 150px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .column,
  .service-card,
  .benefit-card,
  .workshop-card,
  .article-card,
  .resource-card,
  .topic-card,
  .value,
  .team-member,
  .method-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-button {
    display: none;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .column,
  .service-card,
  .benefit-card,
  .workshop-card,
  .article-card,
  .resource-card,
  .topic-card,
  .value,
  .team-member,
  .method-card {
    flex: 1 1 100%;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .timeline {
    padding-left: 20px;
  }
  
  .timeline::before {
    left: 8px;
  }
  
  .step::before {
    left: -33px;
    width: 16px;
    height: 16px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"],
  .newsletter-form .btn-primary {
    width: 100%;
  }
  
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .category-tabs {
    justify-content: flex-start;
  }
  
  .category-tabs button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .column,
  .service-card,
  .benefit-card,
  .workshop-card,
  .article-card,
  .resource-card,
  .topic-card,
  .value,
  .team-member,
  .method-card {
    padding: 24px;
  }
  
  .form-display {
    padding: 24px;
  }
  
  .mobile-menu {
    max-width: 100%;
    padding: 60px 24px 24px;
  }
}

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

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

.hero-content,
.section h2,
.card {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.gap-24 {
  gap: 24px;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn-primary,
  .btn-secondary,
  .cta-button {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  .hero {
    background: #ffffff;
    color: #000000;
  }
  
  .hero h1,
  .hero p {
    color: #000000;
  }
}