/* ============================================
   CONDIDISIN - MODERN BOLD DESIGN SYSTEM
   Comprehensive CSS Styles
   Design Style: Modern Bold
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #FFFFFF;
  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 - MODERN BOLD STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  color: #E63946;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1D3557;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #1A1A1A;
}

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

/* ============================================
   HEADER & NAVIGATION - MODERN BOLD
   ============================================ */
header {
  background: #1D3557;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - MODERN BOLD DESIGN
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #E63946;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C41E2A;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1D3557;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
}

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

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

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: #E63946;
  border-color: #FFFFFF;
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - MODERN BOLD STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #E63946;
  color: #FFFFFF;
  border-color: #E63946;
}

.btn-primary:hover {
  background: #C41E2A;
  border-color: #C41E2A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: #1D3557;
  border-color: #1D3557;
}

.btn-secondary:hover {
  background: #1D3557;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29, 53, 87, 0.3);
}

/* ============================================
   HERO SECTION - MODERN BOLD
   ============================================ */
.hero {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

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

.trust-badge {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* ============================================
   PAGE HERO - MODERN BOLD
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: #FFFFFF;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.highlight {
  background: #F4A261;
  color: #1A1A1A;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 700;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

/* ============================================
   SECTIONS - MODERN BOLD SPACING
   ============================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.benefits,
.services,
.testimonials,
.workshop-listing,
.product-categories,
.gallery-categories {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */
.benefits-grid,
.services-grid,
.testimonials-grid,
.workshops-grid,
.instructors-grid,
.team-grid,
.stats-grid,
.contact-grid,
.techniques-grid,
.gallery-grid,
.category-section .subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* ============================================
   CARDS - MODERN BOLD DESIGN
   ============================================ */
.benefit-card,
.service-card,
.testimonial-card,
.workshop-card,
.instructor-card,
.team-member,
.contact-card,
.technique-card,
.gallery-item,
.subcategory-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 3px solid #1D3557;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover,
.service-card:hover,
.workshop-card:hover,
.instructor-card:hover,
.team-member:hover,
.contact-card:hover,
.technique-card:hover,
.gallery-item:hover,
.subcategory-card:hover {
  transform: translateY(-8px);
  border-color: #E63946;
  box-shadow: 0 12px 24px rgba(230, 57, 70, 0.3);
}

.benefit-card h3,
.service-card h3,
.workshop-card h3,
.instructor-card h3,
.team-member h3,
.contact-card h3,
.technique-card h3,
.gallery-item h3,
.subcategory-card h3 {
  color: #E63946;
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefit-card p,
.service-card p,
.workshop-card p,
.instructor-card p,
.team-member p,
.contact-card p,
.technique-card p,
.gallery-item p,
.subcategory-card p {
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS - READABLE CONTRAST
   ============================================ */
.testimonial-card {
  background: #F8F9FA;
  border: 3px solid #457B9D;
  padding: 32px;
  border-radius: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 48px;
  color: #E63946;
  font-weight: 700;
  opacity: 0.3;
}

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

.testimonial-card strong {
  color: #1D3557;
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-top: 16px;
}

/* ============================================
   PRICING & BADGES
   ============================================ */
.price,
.price-range {
  display: inline-block;
  background: #F4A261;
  color: #1A1A1A;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.rating {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #E63946;
  margin-top: 32px;
}

/* ============================================
   CTA SECTIONS - MODERN BOLD
   ============================================ */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  padding: 60px 20px;
  margin: 60px 0;
  text-align: center;
  border-radius: 24px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
}

.info-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.info-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 32px;
  border-radius: 12px;
  color: #FFFFFF;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ============================================
   CATEGORY FILTERS - MODERN BOLD
   ============================================ */
.category-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.filter-btn {
  background: #FFFFFF;
  color: #1D3557;
  border: 3px solid #1D3557;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E63946;
  color: #FFFFFF;
  border-color: #E63946;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* ============================================
   CATEGORY SECTIONS
   ============================================ */
.category-section {
  background: #F8F9FA;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 3px solid #457B9D;
}

.category-section h2 {
  color: #1D3557;
  font-size: 32px;
  margin-bottom: 16px;
}

.category-description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 24px;
}

/* ============================================
   LISTS - MODERN BOLD STYLE
   ============================================ */
.services-list,
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.services-list li,
.values-list li {
  padding: 16px 24px;
  background: #F8F9FA;
  border-left: 4px solid #E63946;
  border-radius: 8px;
  font-size: 16px;
  color: #333333;
  list-style: none;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #457B9D;
  border-radius: 16px;
  margin-bottom: 20px;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #E63946;
  font-weight: 800;
  margin-bottom: 12px;
}

.stat-item p {
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: #F8F9FA;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #E63946;
}

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

.faq-item p {
  color: #333333;
  line-height: 1.6;
}

/* ============================================
   MISSION & VISION - MODERN BOLD
   ============================================ */
.mission-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.mission-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.3);
}

.mission-card h2 {
  color: #FFFFFF;
  font-size: 28px;
  margin-bottom: 16px;
}

.mission-card p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.6;
}

/* ============================================
   FORM PLACEHOLDER
   ============================================ */
.form-placeholder {
  background: #F8F9FA;
  padding: 40px;
  border-radius: 16px;
  border: 3px solid #457B9D;
  margin-top: 32px;
}

.form-placeholder ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.form-placeholder li {
  padding: 12px 20px;
  background: #FFFFFF;
  border-left: 4px solid #E63946;
  border-radius: 8px;
  list-style: none;
}

.form-placeholder .note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  border: 3px dashed #457B9D;
  margin-top: 32px;
}

.map-placeholder p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
}

/* ============================================
   THANK YOU PAGE - MODERN BOLD
   ============================================ */
.thank-you-hero,
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark,
.success-icon {
  width: 100px;
  height: 100px;
  background: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  animation: scaleIn 0.5s ease;
}

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

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.step-item {
  background: #F8F9FA;
  padding: 20px 32px;
  border-radius: 12px;
  border-left: 4px solid #E63946;
  font-size: 18px;
  color: #333333;
  font-weight: 600;
}

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

.suggestion-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  border: 3px solid #457B9D;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 40px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #F8F9FA;
  padding: 40px;
  border-radius: 16px;
}

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

.legal-content h3 {
  color: #E63946;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

/* ============================================
   FOOTER - MODERN BOLD
   ============================================ */
footer {
  background: #1D3557;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-section h3 {
  color: #F4A261;
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a:hover {
  color: #F4A261;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER - MODERN BOLD
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1D3557;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  display: none;
  border-top: 4px solid #E63946;
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
  background: #C41E2A;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background: #FFFFFF;
  color: #1D3557;
}

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

.cookie-settings:hover {
  background: #F4A261;
  color: #1A1A1A;
}

/* ============================================
   COOKIE MODAL - MODERN BOLD
   ============================================ */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.cookie-category {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #457B9D;
}

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Layout */
  .hero-cta {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .workshop-card,
  .instructor-card,
  .team-member,
  .contact-card,
  .technique-card,
  .gallery-item,
  .subcategory-card,
  .stat-item,
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  .mission-card {
    flex: 1 1 100%;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Sections */
  .section,
  .benefits,
  .services,
  .testimonials {
    padding: 30px 20px;
  }
  
  .cta-banner,
  .cta-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimization */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .filter-btn {
    flex: 1 1 100%;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

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

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

.contact-alternative {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
}

.hashtag {
  font-size: 24px;
  font-weight: 700;
  color: #E63946;
  margin: 20px 0;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.workshop-card {
  animation: fadeInUp 0.6s ease;
}

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