/* ============================================
   BRISTLE HAMMER - PLAYFUL DYNAMIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Lato', 'Comic Sans MS', cursive, sans-serif;
  line-height: 1.7;
  color: #2D2D2D;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF4E0 50%, #E0F4FF 100%);
  overflow-x: hidden;
}

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

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

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

/* ============================================
   TYPOGRAPHY - PLAYFUL & DYNAMIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Comic Sans MS', cursive, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #FF6B6B;
  text-shadow: 3px 3px 0px #FFE66D;
  transform: rotate(-1deg);
}

h1 {
  font-size: 48px;
  animation: bounce 2s infinite;
}

h2 {
  font-size: 36px;
  color: #4ECDC4;
  text-shadow: 2px 2px 0px #FF6B6B;
}

h3 {
  font-size: 24px;
  color: #9B59B6;
  text-shadow: 1px 1px 0px #F39C12;
}

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

@keyframes bounce {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-10px); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

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

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  animation: fadeIn 0.8s ease-out;
}

/* ============================================
   HEADER - PLAYFUL NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  border-bottom: 5px solid #FFE66D;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  filter: drop-shadow(3px 3px 0px #FFE66D);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(10deg) scale(1.1);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-nav a:hover {
  background: #FFE66D;
  color: #FF6B6B;
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 5px 15px rgba(255, 230, 109, 0.6);
}

/* ============================================
   MOBILE MENU - PLAYFUL SLIDE-IN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FF6B6B, #F39C12);
  color: #FFFFFF;
  border: 4px solid #FFE66D;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #F39C12, #FF6B6B);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B6B 0%, #9B59B6 100%);
  z-index: 1000;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFE66D;
  color: #FF6B6B;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FFFFFF;
  color: #FF6B6B;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-nav a:hover {
  background: #FFE66D;
  color: #FF6B6B;
  border-color: #FFFFFF;
  transform: translateX(10px) scale(1.05);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   BUTTONS - ENERGETIC & FUN
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 4px solid transparent;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #F39C12);
  color: #FFFFFF;
  border-color: #FFE66D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
  background: linear-gradient(135deg, #F39C12, #FF6B6B);
}

.btn-secondary {
  background: linear-gradient(135deg, #4ECDC4, #9B59B6);
  color: #FFFFFF;
  border-color: #FFE66D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.5);
  background: linear-gradient(135deg, #9B59B6, #4ECDC4);
}

/* ============================================
   HERO SECTION - DYNAMIC & ENERGETIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #9B59B6 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #FFE66D;
}

.hero::before {
  content: '★';
  position: absolute;
  font-size: 200px;
  color: rgba(255, 230, 109, 0.2);
  top: -50px;
  left: -50px;
  animation: spin 10s linear infinite;
}

.hero::after {
  content: '♪';
  position: absolute;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.2);
  bottom: -30px;
  right: -30px;
  animation: bounce 3s ease infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  color: #FFFFFF;
  text-shadow: 4px 4px 0px #FF6B6B, 6px 6px 0px #F39C12;
  margin-bottom: 32px;
  animation: slideInLeft 0.8s ease-out;
}

.hero-subheadline {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInRight 0.8s ease-out;
}

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

.trust-indicator {
  color: #FFE66D;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================
   CARDS & GRID LAYOUTS - PLAYFUL FLEXBOX
   ============================================ */

.card-container,
.services-grid,
.benefits-grid,
.values-grid,
.categories-grid,
.options-grid,
.info-grid,
.stats-grid,
.testimonials,
.resources-grid,
.participants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.card,
.service-card,
.service-detail,
.benefit,
.value,
.category,
.option,
.info-block,
.stat,
.resource,
.participant {
  background: linear-gradient(135deg, #FFFFFF, #FFF9E6);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  border: 5px solid #FFE66D;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

.card:hover,
.service-card:hover,
.service-detail:hover,
.benefit:hover,
.value:hover,
.category:hover,
.option:hover,
.info-block:hover,
.stat:hover,
.resource:hover,
.participant:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
  border-color: #4ECDC4;
}

.card h3,
.service-card h3,
.service-detail h3,
.benefit h3,
.value h3,
.category h3,
.option h3,
.info-block h3,
.resource h3,
.participant h3 {
  color: #FF6B6B;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #F39C12;
  margin: 16px 0;
  text-shadow: 2px 2px 0px #FFE66D;
}

/* ============================================
   PROCESS STEPS - ANIMATED FLOW
   ============================================ */

.process-steps,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #FFE66D, #FFF9E6);
  border-radius: 25px;
  border: 4px solid #FF6B6B;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.4);
}

.step-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FF6B6B;
  text-shadow: 3px 3px 0px #4ECDC4;
  margin-bottom: 16px;
  animation: pulse 2s infinite;
}

.step h3 {
  color: #9B59B6;
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS - VIBRANT CARDS
   ============================================ */

.testimonial-card,
.testimonial-feature {
  background: linear-gradient(135deg, #4ECDC4, #9B59B6);
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
  border: 5px solid #FFE66D;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: #FFE66D;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.testimonial-card:hover,
.testimonial-feature:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 15px 40px rgba(155, 89, 182, 0.5);
}

.testimonial-card p,
.testimonial-feature p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.client-name {
  font-weight: 700;
  color: #FFE66D !important;
  font-size: 16px !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.client-title {
  color: #FFFFFF !important;
  font-size: 14px !important;
  opacity: 0.9;
}

.result {
  color: #FFE66D !important;
  font-weight: 600 !important;
  font-style: italic;
  margin-top: 16px !important;
}

/* ============================================
   STATS SECTION - ANIMATED NUMBERS
   ============================================ */

.stats {
  background: linear-gradient(135deg, #9B59B6, #FF6B6B);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
  border: 6px solid #FFE66D;
}

.stats h2 {
  color: #FFFFFF;
  text-align: center;
  text-shadow: 3px 3px 0px #FF6B6B;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #FFE66D;
  text-shadow: 4px 4px 0px #FF6B6B;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.stat-label {
  display: block;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.form-notice {
  background: linear-gradient(135deg, #FFE66D, #FFF9E6);
  padding: 32px;
  border-radius: 25px;
  border: 4px solid #4ECDC4;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.form-notice p {
  margin-bottom: 16px;
  color: #2D2D2D;
}

.form-notice a {
  color: #FF6B6B;
  font-weight: 700;
  text-decoration: underline;
}

.form-notice a:hover {
  color: #F39C12;
}

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

.problem-solution,
.services-intro,
.story,
.workshop-highlight,
.featured-resource,
.guarantee,
.meanwhile,
.email-confirmation {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF9E6, #FFFFFF);
  border-radius: 30px;
  margin: 60px 0;
  border: 5px solid #4ECDC4;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.problem {
  font-size: 20px;
  color: #FF6B6B;
  font-weight: 600;
  margin-bottom: 24px;
}

.solution {
  font-size: 20px;
  color: #4ECDC4;
  font-weight: 600;
}

.section-subheadline {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

/* ============================================
   LISTS - COLORFUL & DYNAMIC
   ============================================ */

ul:not(.main-nav):not(.mobile-nav):not(.footer-legal) {
  margin: 24px 0;
  padding-left: 0;
}

ul:not(.main-nav):not(.mobile-nav):not(.footer-legal) li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFE66D, #FFF9E6);
  border-left: 6px solid #FF6B6B;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
}

ul:not(.main-nav):not(.mobile-nav):not(.footer-legal) li::before {
  content: '★';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #FF6B6B;
  font-size: 20px;
}

ul:not(.main-nav):not(.mobile-nav):not(.footer-legal) li:hover {
  transform: translateX(10px);
  border-left-color: #4ECDC4;
  background: linear-gradient(135deg, #4ECDC4, #E0F4FF);
}

/* ============================================
   MODULE & ARTICLE CARDS
   ============================================ */

.module,
.article,
.faq-item {
  background: linear-gradient(135deg, #FFFFFF, #FFE5E5);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 25px;
  border: 4px solid #9B59B6;
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
  transition: all 0.3s ease;
}

.module:hover,
.article:hover,
.faq-item:hover {
  transform: translateX(10px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(243, 156, 18, 0.4);
  border-color: #F39C12;
}

.module h3,
.article h3,
.faq-item h3 {
  color: #9B59B6;
  margin-bottom: 16px;
}

/* ============================================
   CTA SECTIONS - ENERGETIC CALLS TO ACTION
   ============================================ */

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FF6B6B, #F39C12, #FFE66D);
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  border: 6px solid #4ECDC4;
}

.cta-section::before {
  content: '🎉';
  position: absolute;
  font-size: 150px;
  top: -40px;
  left: 50px;
  opacity: 0.2;
  animation: bounce 3s infinite;
}

.cta-section::after {
  content: '🚀';
  position: absolute;
  font-size: 120px;
  bottom: -30px;
  right: 50px;
  opacity: 0.2;
  animation: slideInRight 2s infinite alternate;
}

.cta-section h2 {
  color: #FFFFFF;
  text-shadow: 4px 4px 0px #FF6B6B;
  margin-bottom: 24px;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency {
  color: #FFE66D !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* ============================================
   FOOTER - PLAYFUL & INFORMATIVE
   ============================================ */

footer {
  background: linear-gradient(135deg, #2D2D2D, #4A4A4A);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 6px solid #FFE66D;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 0px #FFE66D);
}

.footer-col h4 {
  color: #FFE66D;
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px #FF6B6B;
}

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

.footer-col nav a,
.footer-col p {
  color: #FFFFFF;
  transition: all 0.3s ease;
  opacity: 0.9;
}

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

.footer-bottom {
  border-top: 3px solid #FFE66D;
  padding-top: 32px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
}

.footer-legal a {
  color: #FFE66D;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B6B, #9B59B6);
  padding: 24px 20px;
  z-index: 9999;
  border-top: 5px solid #FFE66D;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 14px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  font-size: 14px;
  text-transform: uppercase;
}

.cookie-accept {
  background: #FFE66D;
  color: #FF6B6B;
  border-color: #FFFFFF;
}

.cookie-accept:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 5px 15px rgba(255, 230, 109, 0.6);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.cookie-settings {
  background: transparent;
  color: #FFE66D;
  border-color: #FFE66D;
}

.cookie-settings:hover {
  background: rgba(255, 230, 109, 0.2);
  transform: scale(1.05);
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: linear-gradient(135deg, #FFFFFF, #FFF9E6);
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 6px solid #4ECDC4;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B6B;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #F39C12;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 15px;
  border-left: 5px solid #4ECDC4;
}

.cookie-category h3 {
  color: #FF6B6B;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #CCC;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #4ECDC4;
}

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

.toggle-switch.active::after {
  transform: translateX(30px);
}

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

/* ============================================
   LEGAL PAGES - READABLE CONTENT
   ============================================ */

.legal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #4ECDC4;
}

.legal-content h2 {
  color: #FF6B6B;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 3px solid #FFE66D;
}

.legal-content h3 {
  color: #4ECDC4;
  margin-top: 24px;
  margin-bottom: 16px;
}

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

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

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 14px 32px;
  }
  
  .card,
  .service-card,
  .service-detail,
  .benefit,
  .value,
  .category,
  .option,
  .info-block,
  .stat,
  .resource,
  .participant {
    flex: 1 1 100%;
  }
  
  .process-steps,
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .modal-content {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .card,
  .module,
  .article {
    padding: 24px;
  }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Scroll reveal animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #FFE66D;
  outline-offset: 3px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none !important;
  }
}