/* 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', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}
.cookie-consent p {
  color: white;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #2C3E50;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; }

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

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

a:hover {
  color: #C0392B;
  transform: translateY(-2px);
}

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

ul {
  list-style: none;
}

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

/* Header Styles */
header {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #E74C3C;
}

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

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

.logo:hover img {
  transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E74C3C;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(231, 76, 60, 0.2);
  border-left-color: #E74C3C;
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.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: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: white;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

/* Hero Page Variant */
.hero-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-page h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
}

.hero-page p,
.hero-page .subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 24px;
}

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

.btn-primary {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2C3E50;
  transform: translateY(-3px);
}

.btn-link {
  color: #E74C3C;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-link:hover {
  color: #C0392B;
  transform: translateX(5px);
}

/* Section Styles */
.section,
.content-section,
.value-proposition,
.services-overview,
.process,
.testimonials,
.location-info,
.cta-final {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services-overview,
.testimonials {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-proposition h2,
.services-overview h2,
.process h2,
.testimonials h2,
.content-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.value-proposition p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #7F8C8D;
}

/* Differentiators & Feature Grids */
.differentiators,
.services-grid,
.process-timeline,
.testimonials-grid,
.values-grid,
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.diff-item,
.service-card,
.process-step,
.testimonial-card,
.value-card,
.process-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.diff-item:hover,
.service-card:hover,
.value-card:hover,
.process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.diff-item img,
.service-card img,
.process-step img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: hue-rotate(340deg) saturate(1.5);
}

.diff-item h3,
.service-card h3,
.process-step h3,
.value-card h3,
.process-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.diff-item p,
.service-card p,
.value-card p,
.process-item p {
  color: #7F8C8D;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E74C3C;
  margin: 16px 0;
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Process Timeline */
.process {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 60px 20px;
}

.process h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.process-timeline {
  position: relative;
  gap: 32px;
}

.process-step {
  background: white;
}

.process-step h3 {
  color: #E74C3C;
  font-size: 18px;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-left: 4px solid #E74C3C;
  padding: 32px;
  text-align: left;
  max-width: 500px;
}

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

.client-name {
  font-weight: 600;
  color: #34495E;
  font-style: normal;
  font-size: 14px;
}

/* Location Info */
.location-info {
  background: white;
  border-radius: 16px;
  padding: 60px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.location-details {
  flex: 1 1 300px;
  max-width: 400px;
}

.location-details p {
  margin-bottom: 24px;
  font-size: 16px;
}

/* CTA Final */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 60px;
}

.cta-final h2,
.cta-section h2 {
  color: white;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
}

.cta-final p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

/* Review Categories */
.review-categories,
.categories-list,
.collections-grid,
.challenges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-card,
.collection-card,
.challenge-card,
.category-item {
  flex: 1 1 280px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover,
.collection-card:hover,
.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.category-card h3,
.collection-card h3,
.challenge-card h3,
.category-item h3 {
  margin-bottom: 12px;
  color: #2C3E50;
}

.collection-card .meta {
  font-size: 14px;
  color: #7F8C8D;
  margin-top: 12px;
}

/* Featured Reviews */
.featured-reviews,
.collections-featured {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.review-card {
  flex: 1 1 350px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.review-card h3 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.review-card .author {
  font-size: 14px;
  color: #7F8C8D;
  margin-bottom: 16px;
}

.review-card .excerpt {
  color: #34495E;
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-card .rating {
  color: #E74C3C;
  font-size: 20px;
}

/* Service Details */
.custom-review-service,
.custom-collection-service,
.reading-challenges,
.services-detail,
.philosophy-section,
.values-section,
.team-section,
.local-connection {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-details {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
}

.service-details p {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-details strong {
  color: #2C3E50;
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.feature {
  flex: 1 1 250px;
  text-align: center;
  padding: 24px;
}

.feature img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.feature p {
  color: #34495E;
  font-size: 15px;
}

/* Process Section Variant */
.process-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

/* Consultation Types */
.consultation-types {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.type-card {
  flex: 1 1 300px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Reviewer Bio */
.reviewer-bio {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 16px;
}

.reviewer-bio h2 {
  text-align: center;
  margin-bottom: 24px;
}

.reviewer-bio p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

/* Service Block */
.service-block {
  background: white;
  padding: 40px 32px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #E74C3C;
  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-block h2 {
  margin-bottom: 16px;
  text-align: left;
}

.service-block p {
  margin-bottom: 16px;
  color: #34495E;
}

.service-block .price {
  font-size: 28px;
  font-weight: 700;
  color: #E74C3C;
  margin: 20px 0;
}

.service-block ul {
  list-style: none;
  margin: 24px 0;
}

.service-block ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #34495E;
}

.service-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: bold;
}

/* Contact Info */
.contact-info {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.contact-method {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: hue-rotate(340deg) saturate(1.5);
}

.contact-method h3 {
  margin-bottom: 16px;
}

.contact-method p {
  color: #34495E;
  line-height: 1.8;
}

/* Contact Form */
.contact-form-section,
.newsletter-section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-container,
.newsletter-form {
  max-width: 600px;
  margin: 32px auto 0;
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2C3E50;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #E74C3C;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  font-size: 14px;
  color: #34495E;
  line-height: 1.6;
}

/* Legal Pages */
.legal-page {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: left;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content ul li {
  color: #34495E;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.last-updated {
  color: #7F8C8D;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

/* Thank You Page */
.thank-you-page {
  margin-bottom: 60px;
  padding: 80px 20px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: hue-rotate(340deg) saturate(1.5);
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.thank-you-content .lead {
  font-size: 20px;
  color: #2C3E50;
  font-weight: 600;
  margin-bottom: 16px;
}

.next-steps {
  margin: 40px 0;
  text-align: left;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 20px;
}

.next-steps ul {
  list-style: none;
}

.next-steps ul li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
}

.next-steps ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: bold;
}

.thank-you-content .contact-info {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 12px;
}

.thank-you-content .contact-info h3 {
  margin-bottom: 16px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid #E74C3C;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 20px;
  background: none;
  -webkit-text-fill-color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #E74C3C;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #E74C3C;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

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

.cookie-btn-settings:hover {
  background: #E74C3C;
}

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

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

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #7F8C8D;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #f5f5f5;
  color: #2C3E50;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #2C3E50;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f5f7fa;
  border-radius: 8px;
  border-left: 4px solid #E74C3C;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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

input:checked + .cookie-slider {
  background-color: #E74C3C;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-page h1 { font-size: 32px; }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Mobile header */
  header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Mobile sections */
  .hero {
    padding: 60px 20px;
  }
  
  .section,
  .content-section {
    padding: 32px 16px;
  }
  
  /* Mobile grids */
  .differentiators,
  .services-grid,
  .process-timeline,
  .testimonials-grid,
  .reviews-grid,
  .contact-grid,
  .values-grid {
    flex-direction: column;
  }
  
  .diff-item,
  .service-card,
  .process-step,
  .testimonial-card,
  .review-card,
  .contact-method,
  .value-card {
    max-width: 100%;
  }
  
  /* Mobile buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Mobile footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Mobile cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Mobile legal pages */
  .legal-content {
    padding: 32px 24px;
  }
  
  /* Mobile thank you page */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  /* Mobile forms */
  .form-container,
  .newsletter-form {
    padding: 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

.diff-item,
.service-card,
.testimonial-card,
.review-card {
  animation: fadeIn 0.6s ease-out;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #E74C3C;
  outline-offset: 2px;
}

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