/* CSS Reset and 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0f1419 100%);
  background-attachment: fixed;
  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;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #00cccc;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 12px;
  color: #e0e0e0;
}

strong {
  color: #00ffff;
  font-weight: 600;
}

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

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
  transform: scale(1.05);
}

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

.nav-menu li {
  margin-bottom: 0;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #00cccc);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: #00ffff;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #1a4a5e, #2c5f7c);
  border: 2px solid #00ffff;
  color: #00ffff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #2c5f7c, #4a9b8e);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a1929 0%, #1a2332 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 2px solid rgba(0, 255, 255, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  color: #00ffff;
  padding-left: 10px;
  border-bottom-color: #00ffff;
}

/* Main Content Spacing */
main {
  margin-top: 82px;
  min-height: calc(100vh - 82px);
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* Hero Section */
.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3) 0%, rgba(10, 25, 41, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-stat {
  font-size: 18px;
  color: #00ffff;
  margin-bottom: 16px;
  font-weight: 600;
}

.trust-badge {
  color: #00ffff;
  font-weight: 600;
  margin-top: 24px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background: linear-gradient(135deg, #1a4a5e, #2c5f7c);
  color: #00ffff;
  border-color: #00ffff;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2c5f7c, #4a9b8e);
  box-shadow: 0 6px 25px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border-color: #00ffff;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Problem-Solution Section */
.problem-solution {
  padding: 80px 20px;
  background: rgba(26, 35, 50, 0.5);
}

.problem-solution .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

.pain-points li {
  padding: 16px 20px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 4px solid #00ffff;
  border-radius: 4px;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.pain-points li:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(8px);
}

.solution {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(74, 155, 142, 0.2));
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  font-size: 18px;
  color: #ffffff;
}

/* Services Overview */
.services-overview {
  padding: 80px 20px;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
}

.service-card h3 {
  color: #00ffff;
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #00ffff;
  margin-top: 24px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Methodology */
.methodology {
  padding: 80px 20px;
  background: rgba(26, 35, 50, 0.3);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 255, 255, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #00ffff;
  opacity: 0.5;
}

.step:last-child::after {
  display: none;
}

.step:hover {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.15));
  transform: scale(1.05);
  border-color: #00ffff;
}

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

.methodology-description {
  text-align: center;
  font-size: 18px;
  color: #b0e0e6;
  max-width: 800px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  padding: 80px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #1a4a5e;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 48px;
  color: rgba(26, 74, 94, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  border-left-color: #00ffff;
}

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

.testimonial-author {
  font-weight: 600;
  color: #1a4a5e;
  font-style: normal;
  margin-top: 16px;
}

/* Page Hero */
.page-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  text-align: center;
}

.page-hero-simple {
  padding: 120px 20px 60px;
  background: rgba(26, 35, 50, 0.5);
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #b0e0e6;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #00ffff;
}

/* Service Detail Cards */
.service-detail {
  padding: 60px 20px;
}

.service-card-large {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.tagline {
  font-size: 18px;
  color: #00ffff;
  font-style: italic;
  margin-bottom: 24px;
}

.service-card-large ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-card-large ul li {
  padding-left: 20px;
  position: relative;
}

.service-card-large ul li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-weight: bold;
}

.guarantee {
  color: #00ffff;
  font-weight: 600;
  margin-top: 16px;
}

/* Content Grids */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.content-wrapper {
  max-width: 100%;
}

/* Text-Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1 1 45%;
  min-width: 280px;
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

/* Types Grid */
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}

.type-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 255, 255, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.type-card:hover {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.15));
  transform: translateY(-4px);
  border-color: #00ffff;
}

.type-card h3 {
  color: #00ffff;
  margin-bottom: 16px;
}

/* Comparison Section */
.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 48px 0;
}

.comparison-column {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 12px;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.comparison-column h3 {
  text-align: center;
  color: #00ffff;
  margin-bottom: 24px;
}

.comparison-column ul {
  padding-left: 20px;
}

.comparison-column ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 16px;
}

.comparison-column ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-size: 20px;
}

/* Workshops Grid */
.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}

.workshop-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
}

.workshop-card h3 {
  color: #00ffff;
  margin-bottom: 16px;
}

.workshop-card-large {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Resources Grid */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}

.resource-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.2);
}

.resource-card h3 {
  color: #00ffff;
  margin-bottom: 16px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}

.blog-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(10, 25, 41, 0.5));
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.2);
}

.blog-card h3 {
  color: #00ffff;
  margin-bottom: 16px;
}

/* Download Stats */
.download-stats {
  text-align: center;
  color: #00ffff;
  font-weight: 600;
  margin-bottom: 32px;
}

.satisfaction-rate {
  text-align: center;
  color: #00ffff;
  font-weight: 600;
  margin-top: 32px;
}

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

.legal-content h2 {
  margin-top: 48px;
  color: #00ffff;
}

.legal-content h3 {
  margin-top: 32px;
  color: #00cccc;
}

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

.legal-content ul li {
  padding-left: 20px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00ffff;
}

/* Thank You Page */
.thank-you-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.3), rgba(74, 155, 142, 0.2));
  text-align: center;
}

.confirmation {
  color: #00ffff;
  font-weight: 600;
  font-size: 18px;
  margin: 24px 0;
}

.urgency {
  color: #00ffff;
  font-weight: 600;
  margin-top: 24px;
  text-align: center;
}

.value-proposition {
  font-size: 18px;
  color: #b0e0e6;
  margin: 24px 0;
  text-align: center;
}

/* CTA Section */
.cta, .cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.4), rgba(74, 155, 142, 0.3));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.cta .content-wrapper,
.cta-final .content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #0a1929 0%, #050a12 100%);
  padding: 60px 20px 20px;
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  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(25% - 40px);
  min-width: 220px;
}

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

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

.footer-section a {
  color: #b0e0e6;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #00ffff;
  padding-left: 8px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  color: #7a9ca5;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 74, 94, 0.98), rgba(10, 25, 41, 0.98));
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-content {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-banner-content p {
  color: #e0e0e0;
  margin-bottom: 0;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  min-width: 140px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0a1929, #1a2332);
  border-radius: 16px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

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

.cookie-modal-header h3 {
  color: #00ffff;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

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

.cookie-category h4 {
  color: #00ffff;
  margin-bottom: 0;
  font-size: 16px;
}

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #00ffff;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .service-card,
  .type-card,
  .workshop-card,
  .resource-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .blog-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero {
    padding: 80px 20px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    min-width: auto;
  }
  
  /* Cards and Grids */
  .service-card,
  .type-card,
  .comparison-column,
  .workshop-card,
  .resource-card,
  .blog-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Service Cards */
  .service-card-large,
  .workshop-card-large {
    padding: 32px 24px;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-banner-content {
    flex: 1 1 100%;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .service-card,
  .type-card,
  .workshop-card,
  .resource-card {
    padding: 24px;
  }
}

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

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

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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