/* ==========================================================================
   TWILIGHT ARC - SCANDINAVIAN CLEAN DESIGN
   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', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #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 - SCANDINAVIAN CLEAN
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2D3B87;
  margin-bottom: 16px;
}

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

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

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

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

p {
  margin-bottom: 16px;
  color: #4a5568;
}

strong {
  font-weight: 600;
  color: #2D3B87;
}

/* ==========================================================================
   LAYOUT SYSTEM - FLEXBOX ONLY
   ========================================================================== */

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

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

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

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

.main-nav a {
  color: #2D3B87;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #7B68EE;
  border-bottom-color: #7B68EE;
}

/* ==========================================================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D3B87;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 59, 135, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2D3B87;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #7B68EE;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #2D3B87;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

/* ==========================================================================
   BUTTONS - SCANDINAVIAN STYLE
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover {
  background-color: #7B68EE;
  border-color: #7B68EE;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 104, 238, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2D3B87;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 59, 135, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #7B68EE;
  border-color: #7B68EE;
}

.btn-outline:hover {
  background-color: #7B68EE;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-link {
  color: #7B68EE;
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
}

.btn-link:hover {
  color: #2D3B87;
  text-decoration: underline;
}

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

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #2D3B87;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.highlight {
  color: #7B68EE;
  font-weight: 600;
  margin-bottom: 16px;
}

.trust-badge {
  margin-top: 32px;
  color: #2D3B87;
  font-weight: 500;
  font-size: 18px;
}

.price-hero {
  font-size: 48px;
  color: #2D3B87;
  font-weight: 700;
  margin: 24px 0;
}

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

.benefits-grid,
.services-grid,
.values-grid,
.metrics-grid,
.categories-grid,
.contact-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.benefit-card,
.service-card,
.value-card,
.metric,
.category,
.contact-method,
.trust-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(123, 104, 238, 0.15);
}

.benefit-card h3,
.service-card h3,
.value-card h3 {
  color: #2D3B87;
  margin-bottom: 16px;
}

.benefit-card p,
.service-card p,
.value-card p {
  color: #4a5568;
  line-height: 1.6;
}

.price {
  font-size: 28px;
  color: #2D3B87;
  font-weight: 700;
  margin: 16px 0;
}

/* ==========================================================================
   PROCESS STEPS - FLEXBOX LAYOUT
   ========================================================================== */

.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2D3B87;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  color: #2D3B87;
  margin-bottom: 12px;
}

.step p {
  color: #4a5568;
  font-size: 14px;
}

/* ==========================================================================
   METRICS & SOCIAL PROOF
   ========================================================================== */

.social-proof {
  background: linear-gradient(135deg, #2D3B87 0%, #7B68EE 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.social-proof h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.metrics-grid {
  justify-content: center;
}

.metric {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
}

.metric-value {
  font-size: 48px;
  color: #F0E68C;
  font-weight: 700;
  margin-bottom: 8px;
}

.metric p {
  color: #ffffff;
  font-size: 16px;
}

/* ==========================================================================
   TESTIMONIALS - READABLE DARK TEXT ON LIGHT
   ========================================================================== */

.testimonials {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #7B68EE;
}

.testimonial-card p {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #2D3B87;
  font-weight: 600;
  font-style: italic;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #2D3B87;
  font-weight: 600;
  margin-top: 24px;
}

/* ==========================================================================
   SERVICE BLOCKS
   ========================================================================== */

.services-detail .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #7B68EE;
}

.service-block h2 {
  color: #2D3B87;
  margin-bottom: 16px;
}

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

.service-block li {
  color: #4a5568;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-block li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7B68EE;
  font-weight: 700;
}

/* ==========================================================================
   WORKSHOP MODULES
   ========================================================================== */

.curriculum .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.module {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #2D3B87;
}

.module h3 {
  color: #2D3B87;
  font-size: 18px;
  margin-bottom: 12px;
}

.module p {
  color: #4a5568;
}

.workshop-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.detail {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* ==========================================================================
   RESOURCES & FEATURED CONTENT
   ========================================================================== */

.resource-card,
.case-card,
.suggestion-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.resource-card:hover,
.case-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(123, 104, 238, 0.15);
}

.resource-card h3,
.case-card h3,
.suggestion-card h3 {
  color: #2D3B87;
  margin-bottom: 16px;
}

.categories-grid {
  justify-content: center;
}

.category {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  background-color: #7B68EE;
  color: #ffffff;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

.category:hover {
  background-color: #2D3B87;
  transform: translateY(-4px);
}

/* ==========================================================================
   EXPERTISE AREAS
   ========================================================================== */

.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.area {
  background-color: #f8f9fa;
  padding: 16px 24px;
  border-radius: 8px;
  color: #2D3B87;
  font-weight: 500;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.area:hover {
  background-color: #2D3B87;
  color: #ffffff;
  border-color: #2D3B87;
}

/* ==========================================================================
   FAQ SECTIONS
   ========================================================================== */

.faq .container,
.faq-contact .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #7B68EE;
}

.faq-item h3 {
  color: #2D3B87;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a5568;
}

/* ==========================================================================
   NEWSLETTER & CTA SECTIONS
   ========================================================================== */

.newsletter,
.cta-final,
.custom-solutions {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter h2,
.cta-final h2,
.custom-solutions h2 {
  color: #2D3B87;
  margin-bottom: 16px;
}

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

.newsletter-benefits p {
  color: #4a5568;
  font-weight: 500;
}

.privacy-note,
.trust-note,
.guarantee {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

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

.thank-you {
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thank-you h1 {
  color: #2D3B87;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

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

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

.legal-page h1 {
  color: #2D3B87;
  margin-bottom: 24px;
  text-align: center;
}

.intro {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  text-align: center;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: #2D3B87;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-section p,
.legal-section ul {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 8px;
}

.last-updated {
  text-align: center;
  color: #718096;
  font-style: italic;
  margin-top: 40px;
}

/* ==========================================================================
   CONTACT FORM & INFO
   ========================================================================== */

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

.contact-grid {
  justify-content: center;
}

.contact-method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  background-color: #ffffff;
}

.contact-method h3 {
  color: #2D3B87;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.form-placeholder {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  border: 2px dashed #cbd5e0;
}

.form-placeholder ul {
  list-style-position: inside;
  margin: 16px 0;
}

.form-placeholder li {
  color: #4a5568;
  padding: 8px 0;
}

.form-note {
  margin-top: 24px;
  font-style: italic;
  color: #718096;
}

/* ==========================================================================
   CONTENT WRAPPERS
   ========================================================================== */

.content-wrapper {
  margin-bottom: 40px;
}

.content-wrapper h2 {
  color: #2D3B87;
  margin-bottom: 16px;
}

.content-wrapper p {
  color: #4a5568;
  line-height: 1.8;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.certification-note,
.hours,
.note {
  text-align: center;
  color: #718096;
  font-style: italic;
  margin-top: 24px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
}

.location-info p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

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

.footer-col p,
.footer-col a {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #F0E68C;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #cbd5e0;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.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 300px;
  color: #cbd5e0;
  font-size: 14px;
}
.cookie-text p, .cookie-text strong {
  color: #cbd5e0;  
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #48bb78;
  color: #ffffff;
  border-color: #48bb78;
}

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

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

.cookie-reject:hover {
  background-color: #4a5568;
  color: #ffffff;
}

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

.cookie-settings:hover {
  background-color: #F0E68C;
  color: #2c3e50;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #2D3B87;
  cursor: pointer;
}

.cookie-preference {
  padding: 16px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-preference label {
  color: #2D3B87;
  font-weight: 600;
}

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

.cookie-toggle.active {
  background-color: #48bb78;
}

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

.cookie-toggle.active:after {
  transform: translateX(24px);
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Card layouts */
  .benefit-card,
  .service-card,
  .value-card,
  .metric,
  .category,
  .contact-method,
  .trust-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Process steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Button groups */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Workshop details */
  .detail {
    flex: 1 1 100%;
  }
  
  /* Service blocks */
  .service-block {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .metric,
  .category {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .benefit-card,
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .step {
    flex: 1 1 calc(25% - 18px);
  }
  
  .metric {
    flex: 1 1 calc(25% - 18px);
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

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

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

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

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