/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #C19A6B;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

blockquote {
  border-left: 4px solid #C19A6B;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #556b82;
}

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

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(26, 59, 92, 0.1);
  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 a {
  display: flex;
  align-items: center;
}

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

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

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

.main-nav a:hover {
  color: #C19A6B;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C19A6B;
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1A3B5C;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(26, 59, 92, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #1A3B5C;
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #1A3B5C;
}

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

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

.mobile-nav a:hover {
  color: #C19A6B;
  padding-left: 10px;
}

/* Buttons */
.btn-secondary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  
}

.btn-secondary {
  background-color: #1A3B5C;
  color: #ffffff;
  border-color: #1A3B5C;
}

.btn-secondary:hover {
  background-color: #C19A6B;
  border-color: #C19A6B;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 154, 107, 0.3);
}

 

.btn-secondary:hover {
  background-color: #1A3B5C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 59, 92, 0.3);
}

.btn-link {
  background-color: transparent;
  color: #C19A6B;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
}

.btn-link:hover {
  color: #1A3B5C;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1A3B5C 0%, #2c5282 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #E8F4F8;
  line-height: 1.6;
}

.trust-indicator {
  margin-top: 32px;
  font-size: 14px;
  color: #E8F4F8;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1A3B5C 0%, #2c5282 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #E8F4F8;
}

/* Sections */
.section,
.value-proposition,
.services-overview,
.process,
.testimonials,
.stats,
.cta-banner,
.story,
.mission-vision,
.team,
.credentials,
.cta-section,
.services-intro,
.service-detail,
.faq,
.workshops-intro,
.workshop-categories,
.upcoming-workshops,
.workshop-features,
.references-intro,
.success-stories,
.testimonials-detailed,
.industries-served,
.results-metrics,
.blog-featured,
.blog-categories,
.blog-grid,
.popular-posts,
.contact-options,
.contact-form-section,
.contact-info,
.faq-contact,
.legal-content,
.next-steps,
.while-waiting,
.social-proof {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
.value-proposition h2,
.services-overview h2,
.process h2,
.testimonials h2,
.story h2,
.mission-vision h2,
.team h2,
.credentials h2,
.cta-section h2,
.service-detail h2,
.faq h2,
.workshops-intro h2,
.workshop-categories h2,
.upcoming-workshops h2,
.workshop-features h2,
.references-intro h2,
.success-stories h2,
.testimonials-detailed h2,
.industries-served h2,
.results-metrics h2,
.blog-featured h2,
.blog-categories h2,
.blog-grid h2,
.popular-posts h2,
.contact-options h2,
.contact-form-section h2,
.contact-info h2,
.faq-contact h2,
.legal-content h2,
.next-steps h2,
.while-waiting h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

/* Cards & Grids - Using ONLY Flexbox */
.benefits-grid,
.services-grid,
.process-steps,
.testimonials-grid,
.stats-grid,
.content-grid,
.team-grid,
.categories-grid,
.category-card,
.workshops-grid,
.features-grid,
.story-card,
.industries-grid,
.posts-grid,
.options-grid,
.info-grid,
.steps-grid,
.actions-grid,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.stat-item,
.content-card,
.team-member,
.category-card,
.workshop-card,
.feature-card,
.story-card,
.industry-card,
.post-card,
.option-card,
.info-card,
.step-card,
.action-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 59, 92, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.feature-card:hover,
.post-card:hover,
.option-card:hover,
.action-card:hover,
.workshop-card:hover,
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 59, 92, 0.15);
}

.stat-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  background-color: #E8F4F8;
  padding: 40px 20px;
}

.stat-item h3 {
  font-size: 48px;
  color: #C19A6B;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  font-size: 16px;
  color: #1A3B5C;
  margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
  background-color: #f8f9fa;
  border-left: 4px solid #C19A6B;
  padding: 24px;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1A3B5C;
  font-size: 14px;
  margin-bottom: 0;
}

.testimonial-card .rating {
  color: #C19A6B;
  font-size: 14px;
  margin-top: 8px;
}

/* Service Cards */
.service-card h3 {
  color: #1A3B5C;
  margin-bottom: 12px;
}

.service-card p {
  color: #556b82;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #C19A6B;
  margin-top: 16px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #E8F4F8;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.step h3 {
  color: #1A3B5C;
  margin-bottom: 16px;
  font-size: 20px;
}

.step p {
  color: #556b82;
  font-size: 14px;
}

/* Text Sections */
.text-section,
.service-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.text-section p,
.service-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Service Detail */
.service-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 59, 92, 0.1);
  margin-bottom: 40px;
}

.tagline {
  font-size: 18px;
  color: #C19A6B;
  font-weight: 600;
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.benefits-list li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  color: #2c3e50;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C19A6B;
  font-weight: 700;
  font-size: 18px;
}

.ideal-for {
  background-color: #E8F4F8;
  padding: 16px;
  border-radius: 4px;
  margin: 24px 0;
  font-weight: 600;
  color: #1A3B5C;
}

/* Values List */
.values-list,
.credentials-list {
  list-style: none;
  max-width: 700px;
  margin: 32px auto;
  padding: 0;
}

.values-list li,
.credentials-list li {
  padding: 16px 16px 16px 40px;
  margin-bottom: 12px;
  background-color: #E8F4F8;
  border-radius: 4px;
  position: relative;
  color: #2c3e50;
}

.values-list li::before,
.credentials-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #C19A6B;
  font-weight: 700;
  font-size: 18px;
}

/* Team Members */
.team-member {
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.team-member h3 {
  color: #1A3B5C;
  margin-bottom: 8px;
}

.team-member .role {
  color: #C19A6B;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-member p {
  color: #556b82;
  font-size: 14px;
}

/* Workshop Cards */
.workshop-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.workshop-card h3 {
  color: #1A3B5C;
  margin-bottom: 16px;
}

.workshop-card .date,
.workshop-card .location {
  color: #556b82;
  font-size: 14px;
  margin-bottom: 8px;
}

.workshop-card .spots {
  color: #C19A6B;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #1A3B5C;
  margin-top: 16px;
}

/* Success Stories */
.story-card {
  flex: 1 1 100%;
  background-color: #f8f9fa;
  padding: 32px;
  border-left: 4px solid #C19A6B;
  margin-bottom: 32px;
}

.story-card h3 {
  color: #1A3B5C;
  margin-bottom: 12px;
}

.story-card .client {
  color: #C19A6B;
  font-weight: 600;
  margin-bottom: 16px;
}

.story-card blockquote {
  margin-top: 24px;
  font-size: 16px;
  color: #1A3B5C;
}

/* Blog */
.featured-post {
  background-color: #E8F4F8;
  padding: 48px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
}

.featured-post h2 {
  color: #1A3B5C;
  margin-bottom: 16px;
}

.featured-post .excerpt {
  font-size: 18px;
  color: #556b82;
  margin-bottom: 16px;
}

.featured-post .meta {
  font-size: 14px;
  color: #1A3B5C;
  margin-bottom: 12px;
}

.featured-post .category {
  display: inline-block;
  background-color: #C19A6B;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.category-tag {
  background-color: #E8F4F8;
  color: #1A3B5C;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tag:hover {
  background-color: #C19A6B;
  color: #ffffff;
}

.post-card h3 {
  color: #1A3B5C;
  margin-bottom: 12px;
  font-size: 20px;
}

.post-card p {
  color: #556b82;
  margin-bottom: 12px;
}

.post-card .meta {
  font-size: 12px;
  color: #C19A6B;
  font-weight: 600;
}

.popular-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.popular-list li {
  padding: 16px 16px 16px 40px;
  margin-bottom: 12px;
  background-color: #E8F4F8;
  border-radius: 4px;
  position: relative;
  color: #1A3B5C;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popular-list li:hover {
  background-color: #C19A6B;
  color: #ffffff;
  padding-left: 48px;
}

.popular-list li::before {
  content: '→';
  position: absolute;
  left: 16px;
  color: #C19A6B;
  font-weight: 700;
}

.popular-list li:hover::before {
  color: #ffffff;
}

/* Contact Form */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}

.form-note {
  background-color: #E8F4F8;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  color: #1A3B5C;
  font-size: 14px;
  text-align: center;
}

.form-fields p {
  margin-bottom: 20px;
  color: #1A3B5C;
  font-weight: 600;
}

/* FAQ */
.faq-item,
.faq-contact .faq-item {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #C19A6B;
}

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

.faq-item p {
  color: #556b82;
  margin-bottom: 0;
}

/* CTA Sections */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A3B5C 0%, #2c5282 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #1A3B5C 0%, #2c5282 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #E8F4F8;
  font-size: 18px;
}

.badge {
  background-color: #E8F4F8;
  color: #1A3B5C;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  margin: 8px;
}

/* Legal Pages */
.legal-hero {
  background-color: #E8F4F8;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #1A3B5C;
  margin-bottom: 8px;
}

.legal-hero p {
  color: #556b82;
  font-size: 14px;
}

.legal-content {
  padding: 40px 20px;
}

.legal-content .text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #1A3B5C;
  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-section {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-section h4 {
  color: #C19A6B;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #E8F4F8;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #E8F4F8;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  color: #E8F4F8;
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A3B5C;
  color: #ffffff;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: #E8F4F8;
}

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

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

.cookie-accept {
  background-color: #C19A6B;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #a67f50;
  transform: scale(1.05);
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-reject:hover {
  background-color: #ffffff;
  color: #1A3B5C;
}

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

.cookie-settings:hover {
  background-color: #E8F4F8;
  color: #1A3B5C;
}

/* 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: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #556b82;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

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

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

.cookie-category {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #1A3B5C;
  margin: 0;
  font-size: 18px;
}

.cookie-category p {
  color: #556b82;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #C19A6B;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

input:disabled + .toggle-slider {
  background-color: #1A3B5C;
  cursor: not-allowed;
}

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

.cookie-modal-actions button {
  flex: 1;
  min-width: 150px;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #1A3B5C;
  color: #ffffff;
}

.cookie-save:hover {
  background-color: #C19A6B;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .services-overview,
  .process,
  .testimonials,
  .stats,
  .cta-banner {
    padding: 32px 16px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-item,
  .content-card,
  .team-member,
  .category-card,
  .workshop-card,
  .feature-card,
  .story-card,
  .industry-card,
  .post-card,
  .option-card,
  .info-card,
  .step-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-secondary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions button {
    width: 100%;
  }
  
  /* Featured Post */
  .featured-post {
    padding: 32px 20px;
  }
  
  /* Service Content */
  .service-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  .btn-secondary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

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

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #C19A6B;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}