/* =========================================
   SPRYPATH - VIBRANT ENERGETIC DESIGN
   Modern, Dynamic, High-Energy Styles
   ========================================= */

/* CSS RESET & BASE */
* {
  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, Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, #E85D04 0%, #F5A800 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FFBA08;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #E85D04;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F5A800;
  transform: scale(1.1) rotate(90deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #E85D04 0%, #F5A800 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid #FFBA08;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  border-left-width: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E85D04 0%, #FFBA08 50%, #2B9348 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: heroTitle 0.8s ease-out;
}

@keyframes heroTitle {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subheadline {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: #E85D04;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
}

.btn-primary:hover {
  background: #B84400;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.5);
}

.btn-secondary {
  background: #FFFFFF;
  color: #E85D04;
  border: 3px solid #E85D04;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: #E85D04;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-link {
  color: #E85D04;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 0;
  display: inline-block;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover {
  color: #B84400;
}

.btn-link:hover::after {
  margin-left: 12px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2B9348 0%, #E85D04 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: #FFFFFF;
  font-size: 18px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

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

.services,
.features,
.testimonials,
.workshops-content,
.course-categories,
.mission,
.blog-content,
.contact-info,
.benefits,
.comparison,
.pricing,
.stats,
.thank-you-hero,
.next-steps,
.legal-content {
  padding: 60px 20px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555555;
}

h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #E85D04;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E85D04, #FFBA08);
  border-radius: 2px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.services-grid,
.features-grid,
.testimonials-grid,
.workshop-grid,
.categories-grid,
.comparison-grid,
.pricing-grid,
.values-grid,
.stats-grid,
.contact-grid,
.blog-grid,
.explore-grid,
.suggestions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* CARDS */
.service-card,
.workshop-card,
.category-card,
.feature,
.value-card,
.comparison-item,
.pricing-card,
.stat-card,
.contact-card,
.blog-card,
.explore-card,
.suggestion-card,
.step-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.service-card::before,
.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #E85D04, #FFBA08, #2B9348);
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.workshop-card:hover,
.category-card:hover,
.blog-card:hover,
.explore-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(232, 93, 4, 0.3);
  border-color: #E85D04;
}

.service-card h3,
.workshop-card h3,
.category-card h3,
.blog-card h3 {
  color: #E85D04;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.workshop-card p,
.category-card p {
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.price,
.duration {
  display: inline-block;
  background: linear-gradient(135deg, #FFBA08, #F5A800);
  color: #1A1A1A;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 186, 8, 0.3);
}

.category {
  display: inline-block;
  background: #2B9348;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* FEATURE CARDS */
.feature {
  text-align: center;
  border: 3px solid #FFBA08;
}

.feature h3 {
  color: #2B9348;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E9 100%);
}

.testimonial-card {
  background: #FFFFFF;
  border-left: 6px solid #2B9348;
  padding: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: #FFBA08;
  opacity: 0.3;
  font-family: Georgia, serif;
}

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

.author {
  display: block;
  color: #E85D04;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #E85D04 0%, #FFBA08 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2), transparent);
}

.cta-banner h2,
.cta-banner p {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: #FFFFFF;
}

/* BENEFITS LIST */
.benefits-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.benefits-list li {
  padding: 16px 20px 16px 60px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 6px solid #2B9348;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  font-size: 16px;
  color: #333333;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #2B9348;
  font-size: 24px;
  font-weight: 700;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 6px solid #FFBA08;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.2);
}

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

.faq-item p {
  color: #555555;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #E85D04 0%, #2B9348 100%);
  padding: 80px 20px;
}

.stats h2 {
  color: #FFFFFF;
}

.stats h2::after {
  background: #FFFFFF;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 40px 20px;
  border: none;
}

.stat-card .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E85D04;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-card .label {
  display: block;
  font-size: 16px;
  color: #555555;
  font-weight: 600;
}

/* PRICING */
.pricing-card {
  text-align: center;
  border: 3px solid #E85D04;
}

.pricing-card h3 {
  color: #E85D04;
  margin-bottom: 20px;
}

.pricing-card .price {
  display: block;
  font-size: 36px;
  color: #2B9348;
  margin-bottom: 24px;
  background: none;
  padding: 0;
  box-shadow: none;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-top: 24px;
}

.pricing-card ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555555;
  border-bottom: 1px solid #F0F0F0;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B9348;
  font-weight: 700;
  font-size: 18px;
}

/* CONTACT FORM */
.contact-form-section {
  background: #F8F9FA;
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field,
.textarea-field,
.email-input {
  width: 100%;
  padding: 16px;
  border: 3px solid #E0E0E0;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.input-field:focus,
.textarea-field:focus,
.email-input:focus {
  outline: none;
  border-color: #E85D04;
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}

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

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #2B9348 0%, #FFBA08 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
}

.newsletter h2,
.newsletter p {
  color: #FFFFFF;
}

.newsletter h2::after {
  background: #FFFFFF;
}

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

.newsletter-form .email-input {
  flex: 1 1 250px;
}

.newsletter-form .btn {
  flex: 0 0 auto;
}

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

.success-message {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E9 100%);
  border-radius: 24px;
  border: 4px solid #2B9348;
  box-shadow: 0 12px 32px rgba(43, 147, 72, 0.2);
}

.success-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #2B9348;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 48px;
  margin-bottom: 24px;
  animation: successPulse 1s ease-in-out;
}

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

.success-message h1 {
  color: #2B9348;
  margin-bottom: 16px;
}

.success-message p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* LOCATION & ADDRESS */
.location,
.story {
  padding: 60px 20px;
  text-align: center;
}

.address-block {
  max-width: 400px;
  margin: 32px auto;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 3px solid #FFBA08;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.address-block p {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.contact-email {
  font-size: 24px;
  font-weight: 700;
  color: #E85D04;
  margin-top: 16px;
}

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

.text-section {
  margin-bottom: 40px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 6px solid #E85D04;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.text-section h2 {
  text-align: left;
  margin-bottom: 16px;
  transform: none;
  left: 0;
}

.text-section h2::after {
  display: none;
}

.text-section p {
  line-height: 1.8;
  color: #555555;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #CCCCCC;
  font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
  color: #FFBA08;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links a,
.footer-contact p {
  display: block;
  color: #CCCCCC;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #FFBA08;
  transform: translateX(4px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 20px 0;
  border-top: 2px solid #444444;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #CCCCCC;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #FFBA08;
}

.copyright {
  text-align: center;
  color: #888888;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
  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: #FFFFFF;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #2B9348;
  color: #FFFFFF;
}

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

.cookie-btn-reject {
  background: #E85D04;
  color: #FFFFFF;
}

.cookie-btn-reject:hover {
  background: #B84400;
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  padding: 20px;
  overflow-y: auto;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #888888;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

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

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

.cookie-category p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #CCCCCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2B9348;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Sections */
  .hero,
  .page-hero,
  .cta-banner,
  .newsletter,
  .stats {
    padding: 40px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cards - Stack on mobile */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .workshop-grid,
  .categories-grid,
  .comparison-grid,
  .pricing-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .blog-grid,
  .explore-grid,
  .suggestions-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .service-card,
  .workshop-card,
  .category-card,
  .feature,
  .value-card,
  .comparison-item,
  .pricing-card,
  .stat-card,
  .contact-card,
  .blog-card,
  .explore-card,
  .suggestion-card,
  .step-card {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .workshop-card,
  .category-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

.service-card,
.feature,
.testimonial-card,
.workshop-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #FFBA08;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #E85D04;
}

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