/* ==========================================
   LUMINA MEND - SCANDINAVIAN CLEAN DESIGN
   Comprehensive CSS Styles
   ========================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

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

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

a {
  color: #2B5F8F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5BA3D0;
}

ul {
  list-style: none;
}

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

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

/* Header */
header {
  background-color: #ffffff;
  padding: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2B5F8F;
  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: #2B5F8F;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 95, 143, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  color: #2B5F8F;
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

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

.btn-primary {
  background-color: #2B5F8F;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(43, 95, 143, 0.2);
}

.btn-primary:hover {
  background-color: #1a4567;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 95, 143, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2B5F8F;
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-indicators span {
  font-size: 14px;
  color: #5a5a5a;
  font-weight: 500;
}

/* Hero Internal */
.hero-internal {
  background-color: #f5f7fa;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.hero-internal h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 16px;
}

.hero-internal p {
  text-align: center;
  font-size: 18px;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
  color: #5a5a5a;
}

.breadcrumbs a {
  color: #2B5F8F;
}

.breadcrumbs span {
  color: #5a5a5a;
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

/* Benefits Section */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  color: #2B5F8F;
  margin-bottom: 12px;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #2B5F8F;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2B5F8F;
  margin-top: auto;
  padding-top: 16px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

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

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

.step-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 300px;
  margin-bottom: 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.duration {
  font-size: 14px;
  color: #5BA3D0;
  font-weight: 600;
  margin-top: 12px;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2B5F8F;
  margin-top: auto;
}

.rating {
  color: #F8B84E;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card.featured {
  border-left: 4px solid #2B5F8F;
}

.service-type {
  font-size: 14px;
  color: #5a5a5a;
  font-style: italic;
}

.testimonials-simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-simple {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.testimonial-simple p {
  color: #2c2c2c;
  font-size: 15px;
  margin-bottom: 12px;
}

.testimonial-simple .author {
  font-size: 14px;
  color: #5a5a5a;
}

.stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stats span {
  font-size: 16px;
  font-weight: 600;
  color: #2B5F8F;
}

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

/* Pricing */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
  border: 2px solid #2B5F8F;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F8B84E;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 16px;
  color: #2B5F8F;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #2B5F8F;
  margin: 16px 0;
}

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

.pricing-card li {
  padding: 8px 0;
  color: #4a4a4a;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.price-note {
  text-align: center;
  color: #5a5a5a;
  font-size: 14px;
  margin-top: 32px;
  font-style: italic;
}

.price-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 300px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 20px;
}

.pricing-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  position: relative;
}

/* Service Detail */
.service-detail {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.service-detail h3 {
  color: #2B5F8F;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-top: 16px;
}

.service-detail li {
  padding: 8px 0 8px 24px;
  color: #4a4a4a;
  position: relative;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B5F8F;
  font-weight: 700;
}

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

.text-image-section > * {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 20px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Values & Reasons Grids */
.values-grid,
.reasons-grid,
.factors-grid,
.expectations-grid,
.methods-grid,
.info-grid,
.actions-grid,
.tips-grid,
.payment-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card,
.reason,
.factor,
.expectation,
.method-card,
.info-block,
.action-card,
.tip,
.payment-method,
.category {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.value-card h3,
.reason h3,
.factor h3,
.expectation h3,
.method-card h3,
.info-block h3,
.action-card h3,
.tip h3,
.payment-method h3,
.category h3 {
  color: #2B5F8F;
  margin-bottom: 12px;
}

.category .rating {
  font-size: 28px;
  color: #2B5F8F;
  margin-top: 8px;
}

/* Milestones */
.milestones {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.milestone {
  text-align: center;
  min-width: 200px;
}

.milestone h3 {
  font-size: 48px;
  color: #2B5F8F;
  margin-bottom: 8px;
}

/* Story Content */
.story-content {
  max-width: 800px;
  margin: 0 auto 40px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Process Points */
.process-points {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.point {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.point h3 {
  color: #2B5F8F;
}

/* Rating Breakdown */
.rating-stats {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.overall-rating {
  text-align: center;
  min-width: 180px;
}

.overall-rating h3 {
  font-size: 56px;
  color: #2B5F8F;
  margin-bottom: 8px;
}

.rating-bars {
  flex: 1;
  min-width: 300px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-bar .stars {
  color: #F8B84E;
  font-size: 16px;
  min-width: 100px;
}

.rating-bar .bar {
  flex: 1;
  height: 12px;
  background-color: #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}

.rating-bar .fill {
  height: 100%;
  background-color: #F8B84E;
  transition: width 0.5s ease;
}

.rating-bar .percentage {
  min-width: 45px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  color: #5a5a5a;
}

/* Contact Form */
.contact-form-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-note {
  background-color: #f5f7fa;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #2B5F8F;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field label {
  display: block;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-size: 14px;
}

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  height: 48px;
  background-color: #f5f7fa;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.textarea-placeholder {
  height: 120px;
}

.input-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #5BA3D0;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-field label {
  margin-bottom: 0;
  font-weight: 400;
}

.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.submit-wrapper {
  margin-top: 8px;
}

.submit-wrapper button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-info {
  font-size: 13px;
  color: #5a5a5a;
  margin-top: 12px;
  text-align: center;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

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

/* CTA Sections */
.cta-final,
.cta-services,
.cta-pricing,
.cta-process,
.cta-about,
.cta-reference {
  background: linear-gradient(135deg, #2B5F8F 0%, #5BA3D0 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px auto;
  max-width: 1200px;
}

.cta-final h2,
.cta-services h2,
.cta-pricing h2,
.cta-process h2,
.cta-about h2,
.cta-reference h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p,
.cta-services p,
.cta-pricing p,
.cta-process p,
.cta-about p,
.cta-reference p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final .btn-primary {
  background-color: #ffffff;
  color: #2B5F8F;
}

.cta-final .btn-primary:hover {
  background-color: #f5f7fa;
  transform: translateY(-2px);
}

.cta-final .btn-secondary,
.cta-about .btn-secondary,
.cta-reference .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  margin-left: 16px;
}

.cta-final .btn-secondary:hover,
.cta-about .btn-secondary:hover,
.cta-reference .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.urgency-note {
  color: #F8B84E;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.headline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2B5F8F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(43, 95, 143, 0.3);
}

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

.subheadline {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 12px;
}

.confirmation {
  font-size: 16px;
  color: #2B5F8F;
  font-weight: 600;
}

.next-steps,
.alternative-actions,
.social-proof-thankyou {
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat {
  text-align: center;
  min-width: 180px;
}

.stat h3 {
  font-size: 48px;
  color: #2B5F8F;
  margin-bottom: 8px;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* Legal Content */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.content-wrapper h2 {
  color: #2B5F8F;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
  text-align: left;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.last-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid #e8e8e8;
  font-style: italic;
  color: #5a5a5a;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #888;
  font-size: 13px;
}

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

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

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

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}

.cookie-consent-text p {
  color: #2c2c2c;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-consent-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2c2c2c;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background-color: #e8e8e8;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #2B5F8F;
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

.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 adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-internal {
    padding: 60px 16px 40px;
  }
  
  /* Cards and grids - ensure proper stacking */
  .benefits-grid,
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .content-grid,
  .process-steps,
  .values-grid,
  .reasons-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .pricing-card,
  .testimonial-card,
  .step,
  .step-card,
  .value-card,
  .reason {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Form */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Legal content */
  .content-wrapper {
    padding: 32px 24px;
  }
  
  /* Rating breakdown */
  .rating-stats {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-final,
  .cta-services,
  .cta-pricing {
    display: none !important;
  }
  
  body {
    background-color: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

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

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

/* Accessibility */
.btn:focus,
a:focus,
button:focus {
  outline: 2px solid #2B5F8F;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Smooth scrolling for internal links */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background-color: #5BA3D0;
  color: #ffffff;
}