/* ===================================
   MYSTIC NAVIGATE - SCANDINAVIAN CLEAN DESIGN
   CSS Stylesheet - Complete 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', sans-serif;
  line-height: 1.6;
  color: #2d3436;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2C5F7D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #2d3436;
  line-height: 1.7;
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.main-nav a {
  color: #2C5F7D;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
}

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

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

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

/* Hide desktop nav on mobile */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background-color: #2C5F7D;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44,95,125,0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #F4F1EA;
  color: #2C5F7D;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2C5F7D;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

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

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===================================
   BUTTONS - SCANDINAVIAN STYLE
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2C5F7D;
  color: #FFFFFF;
  border-color: #2C5F7D;
}

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

.btn-secondary {
  background-color: #FFFFFF;
  color: #2C5F7D;
  border-color: #2C5F7D;
}

.btn-secondary:hover {
  background-color: #2C5F7D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44,95,125,0.2);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, #F4F1EA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #2C5F7D;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  font-size: 14px;
  color: #2C5F7D;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 18px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
}

/* ===================================
   HERO INTERNAL PAGES
   =================================== */
.hero-internal {
  background-color: #F4F1EA;
  padding: 60px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.breadcrumbs {
  font-size: 14px;
  color: #636e72;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #2C5F7D;
}

.breadcrumbs a:hover {
  color: #E8974F;
}

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

.subtitle {
  font-size: 18px;
  color: #636e72;
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #636e72;
  font-style: italic;
}

/* ===================================
   SECTIONS & CARDS
   =================================== */
.section-intro {
  text-align: center;
  font-size: 18px;
  color: #636e72;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Benefits Grid */
.benefits-grid,
.services-grid,
.values-grid,
.trust-grid,
.methods-grid,
.stats-grid,
.signals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.benefit-item,
.service-card,
.value-item,
.trust-item,
.method-card,
.stat-item,
.signal {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover,
.service-card:hover,
.value-item:hover,
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #E8974F;
}

.benefit-item h3,
.service-card h3,
.value-item h3,
.method-card h3 {
  color: #2C5F7D;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-item p,
.service-card p,
.value-item p {
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card p {
  color: #E8974F;
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 768px) {
  .benefit-item,
  .service-card,
  .value-item,
  .trust-item,
  .method-card,
  .stat-item,
  .signal {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
  position: relative;
  margin-bottom: 20px;
}

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

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

.step p {
  color: #636e72;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 100%;
  }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials,
.testimonials-extended {
  background-color: #F4F1EA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2d3436;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #2C5F7D;
  font-size: 16px;
}

.testimonial-author span {
  color: #636e72;
  font-size: 14px;
}

.stats-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-section {
  background: linear-gradient(135deg, #2C5F7D 0%, #1d4054 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.guarantee-text {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.guarantee-text span {
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-section { padding: 60px 20px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #E8974F;
}

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

.faq-item p {
  color: #636e72;
  margin-bottom: 0;
}

/* ===================================
   TEAM SECTION
   =================================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  text-align: center;
  margin-bottom: 20px;
}

.team-member h3 {
  color: #2C5F7D;
  margin-bottom: 8px;
  font-size: 20px;
}

.role {
  color: #E8974F;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  color: #636e72;
  line-height: 1.6;
}

.team-note {
  text-align: center;
  color: #636e72;
  font-style: italic;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .team-member {
    flex: 1 1 100%;
  }
}

/* ===================================
   PRICING SECTIONS
   =================================== */
.price-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.price-item,
.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.price-item:hover,
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #E8974F;
}

.package-card.featured {
  border-color: #2C5F7D;
  box-shadow: 0 8px 24px rgba(44,95,125,0.15);
  transform: scale(1.02);
}

.price {
  color: #E8974F;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.package-price {
  color: #E8974F;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.includes,
.package-includes {
  color: #636e72;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.note-small,
.suitable {
  color: #636e72;
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 768px) {
  .price-item,
  .package-card {
    flex: 1 1 100%;
  }
  .package-card.featured {
    transform: scale(1);
  }
}

/* Pricing Categories */
.pricing-category {
  margin-bottom: 40px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.pricing-category h3 {
  color: #2C5F7D;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F4F1EA;
}

.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  gap: 16px;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list span {
  color: #2d3436;
  flex: 1;
}

.price-list strong {
  color: #E8974F;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

/* ===================================
   PROJECTS & PORTFOLIO
   =================================== */
.project-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #E8974F;
}

.project-card h3 {
  color: #2C5F7D;
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.project-meta span {
  color: #636e72;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #F4F1EA;
  border-radius: 4px;
}

.project-challenge {
  color: #2C5F7D;
  font-size: 14px;
  margin-top: 16px;
  padding: 16px;
  background-color: #F4F1EA;
  border-radius: 4px;
}

.testimonial-mini {
  margin-top: 24px;
  padding: 20px;
  background-color: #F4F1EA;
  border-radius: 8px;
  border-left: 4px solid #E8974F;
}

.testimonial-mini p {
  color: #2d3436;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-mini span {
  color: #636e72;
  font-size: 14px;
}

/* Metrics Grid */
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metric {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #2C5F7D;
  color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .metric {
    flex: 1 1 100%;
  }
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-intro,
.contact-methods,
.contact-form-section,
.service-area,
.why-contact {
  margin-bottom: 60px;
}

.info-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.info-badges span {
  color: #2C5F7D;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #F4F1EA;
  border-radius: 4px;
}

.method-value {
  color: #2C5F7D;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-note {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background-color: #F4F1EA;
  border-radius: 8px;
}

.form-note p {
  color: #636e72;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-note a {
  color: #2C5F7D;
  text-decoration: underline;
}

.contact-alternative {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
}

.contact-alternative strong {
  color: #2C5F7D;
}

.area-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.area-list p {
  margin-bottom: 16px;
}

.area-list .note {
  color: #636e72;
  font-size: 14px;
  font-style: italic;
  margin-top: 24px;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.legal-section h2 {
  color: #2C5F7D;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F4F1EA;
}

.legal-section ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #636e72;
}

.intro-text {
  text-align: center;
  margin-bottom: 40px;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin-top: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

th {
  background-color: #2C5F7D;
  color: #FFFFFF;
  font-weight: 600;
}

td {
  color: #636e72;
}

tr:last-child td {
  border-bottom: none;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero,
.thank-you-page {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F4F1EA 0%, #FFFFFF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2C5F7D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thank-you-hero h1,
.thank-you-page h1 {
  color: #2C5F7D;
  margin-bottom: 16px;
}

.message {
  font-size: 20px;
  color: #2d3436;
  font-weight: 600;
  margin-bottom: 8px;
}

.submessage {
  font-size: 16px;
  color: #636e72;
  margin-bottom: 32px;
}

.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 20px;
}

.step-item,
.action-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  text-align: center;
  margin-bottom: 20px;
}

.step-time {
  color: #E8974F;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.expectations-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  list-style-position: inside;
}

.expectations-list li {
  color: #636e72;
  margin-bottom: 12px;
  padding-left: 8px;
}

.mini-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.testimonial-short {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
}

.testimonial-short p {
  color: #2d3436;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-short span {
  color: #636e72;
  font-size: 14px;
}

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

.reassurance-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  padding: 16px;
  background-color: #F4F1EA;
  border-radius: 8px;
  text-align: center;
  color: #2C5F7D;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .step-item,
  .action-item {
    flex: 1 1 100%;
  }
  .reassurance-item {
    flex: 1 1 100%;
  }
}

/* ===================================
   FEATURES & LISTS
   =================================== */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.feature {
  padding: 12px 24px;
  background-color: #F4F1EA;
  color: #2C5F7D;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

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

.text-section p {
  margin-bottom: 20px;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-left: 4px solid #E8974F;
  border-radius: 4px;
  color: #2C5F7D;
  font-weight: 600;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.cert-item {
  padding: 16px 24px;
  background-color: #F4F1EA;
  border-radius: 4px;
  color: #2C5F7D;
  font-weight: 600;
  text-align: center;
}

/* Statistics */
.statistics {
  background-color: #2C5F7D;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 8px;
}

.statistics h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E8974F;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #FFFFFF;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background-color: #2C5F7D;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
}

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

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

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

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

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

@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 100%;
  }
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F7D;
  color: #FFFFFF;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.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;
  min-width: 250px;
}

.cookie-text p {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 14px;
}

.cookie-text a {
  color: #E8974F;
  text-decoration: underline;
}

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

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

.cookie-accept {
  background-color: #E8974F;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #d68640;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

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

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

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

/* Cookie 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;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 32px;
  max-height: 80vh;
  overflow-y: auto;
}

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

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

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-toggle label {
  color: #2d3436;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.note {
  color: #636e72;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

.trust-text {
  text-align: center;
  color: #2C5F7D;
  font-weight: 600;
  margin-top: 24px;
}

.timeline {
  color: #636e72;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  padding: 12px;
  background-color: #F4F1EA;
  border-radius: 4px;
}

.payment-methods {
  text-align: center;
  color: #636e72;
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

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

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

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

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

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

/* ===================================
   END OF STYLESHEET
   =================================== */
