/* ========================================
   SozialKompass - Warm & Friendly Design
   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: #333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* ========================================
   Typography - Warm & Approachable
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a4466;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #555;
  font-size: 16px;
}

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

a:hover {
  color: #C28400;
}

ul {
  list-style: none;
}

/* ========================================
   Container & Layout - Flexbox Only
   ======================================== */

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

/* ========================================
   Header & Navigation
   ======================================== */

header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.nav-links li {
  display: inline-block;
}

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

.nav-links a:hover {
  color: #C28400;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #C28400;
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.cta-button {
  background-color: #C28400;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(194, 132, 0, 0.3);
}

.cta-button:hover {
  background-color: #A67300;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(194, 132, 0, 0.4);
  color: #fff;
}

/* ========================================
   Mobile Menu - Hamburger Navigation
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #C28400;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(194, 132, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  z-index: 1999;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  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: #1a4466;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #FFF8F0;
}

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

.mobile-nav a {
  color: #1a4466;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: #FFF8F0;
  color: #C28400;
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .nav-links,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ========================================
   Hero Section - Warm & Inviting
   ======================================== */

.hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

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

.hero h1 {
  color: #1a4466;
  font-size: 48px;
  margin-bottom: 20px;
}

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

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

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  min-width: 180px;
}

.btn-primary {
  background-color: #C28400;
  color: #fff;
  box-shadow: 0 4px 16px rgba(194, 132, 0, 0.3);
}

.btn-primary:hover {
  background-color: #A67300;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(194, 132, 0, 0.4);
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.15);
}

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(44, 95, 141, 0.3);
}

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

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

/* ========================================
   Sections - Standard Spacing
   ======================================== */

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

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

/* ========================================
   Benefits Section - Cards
   ======================================== */

.benefits {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

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

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

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

/* ========================================
   Services Grid - Flexbox Layout
   ======================================== */

.services-overview,
.services-detailed {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.service-detail-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #fff 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(194, 132, 0, 0.2);
}

.service-card h3,
.service-detail-card h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.service-card p,
.service-detail-card p {
  color: #555;
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #C28400;
  margin-top: 16px;
  display: block;
}

.service-includes {
  margin: 20px 0;
  padding-left: 0;
}

.service-includes li {
  color: #555;
  padding: 8px 0;
  font-size: 15px;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  padding: 16px;
  background-color: #FFF8F0;
  border-radius: 12px;
}

.service-meta .price {
  font-size: 32px;
  font-weight: 700;
  color: #C28400;
}

.service-meta .duration,
.service-meta .success-rate {
  font-size: 14px;
  color: #555;
}

.service-detail-card.featured {
  border: 3px solid #C28400;
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF8F0 100%);
}

/* ========================================
   Process Steps - Flexbox Timeline
   ======================================== */

.process {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps,
.process-steps-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.step,
.step-detailed {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step:hover,
.step-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(194, 132, 0, 0.2);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #C28400;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(194, 132, 0, 0.3);
}

.step h3,
.step-detailed h3 {
  color: #1a4466;
  margin-bottom: 12px;
}

.step p,
.step-detailed p {
  color: #555;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-direction: column;
}

.step-details {
  background-color: #FFF8F0;
  padding: 16px;
  border-radius: 12px;
  margin-top: 16px;
  text-align: left;
}

.step-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* ========================================
   Testimonials - Cards with Good Contrast
   ======================================== */

.testimonials {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border-left: 4px solid #C28400;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(194, 132, 0, 0.2);
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F8D;
  font-style: normal;
  font-size: 14px;
}

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

/* ========================================
   Statistics Section
   ======================================== */

.statistics {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4466 100%);
  border-radius: 30px;
  padding: 60px 20px;
  color: #fff;
}

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

.stats-grid,
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat,
.impact-stat {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat:hover,
.impact-stat:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C28400;
  display: block;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: #fff;
  display: block;
}

/* ========================================
   CTA Final Section
   ======================================== */

.cta-final {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF8F0 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.cta-final h2 {
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 18px;
  margin-bottom: 32px;
}

.availability,
.trust-line {
  margin-top: 24px;
  font-size: 14px;
  color: #555;
}

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

.trust-elements span {
  color: #1a4466;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   Footer - Clean Layout
   ======================================== */

footer {
  background-color: #1a4466;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

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

.footer-section a:hover {
  color: #C28400;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  font-size: 14px;
}

/* ========================================
   Page Hero - Subpage Headers
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4466 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

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

.page-hero p,
.page-hero .subtitle {
  color: #FFE8CC;
  font-size: 20px;
}

/* ========================================
   Text Sections - Readable Layout
   ======================================== */

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

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

/* ========================================
   Values & Mission Cards
   ======================================== */

.mission,
.story,
.team,
.impact,
.certifications {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.values-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.value-card,
.team-member {
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover,
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(194, 132, 0, 0.2);
}

.value-card h3,
.team-member h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

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

.team-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #FFF8F0;
}

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

/* ========================================
   Timeline - Story Section
   ======================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 40px auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background-color: #FFF8F0;
  border-radius: 16px;
  border-left: 4px solid #C28400;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(194, 132, 0, 0.15);
}

.timeline-item .year {
  font-size: 24px;
  font-weight: 700;
  color: #C28400;
  min-width: 80px;
}

.timeline-item p {
  color: #555;
  flex: 1;
}

/* ========================================
   Guarantees & Certifications
   ======================================== */

.guarantees {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.guarantees h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.guarantee-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(194, 132, 0, 0.2);
}

.guarantee-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 17px;
}

.cert-list {
  max-width: 700px;
  margin: 32px auto;
}

.cert-list li {
  padding: 16px 0;
  color: #555;
  font-size: 16px;
  border-bottom: 1px solid #FFF8F0;
}

/* ========================================
   Documents & Comparison Sections
   ======================================== */

.documents {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

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

.doc-category {
  background-color: #FFF8F0;
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  margin-bottom: 20px;
}

.doc-category h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.doc-category ul {
  padding-left: 0;
}

.doc-category li {
  padding: 8px 0;
  color: #555;
  font-size: 15px;
}

.note {
  background-color: #FFE8CC;
  padding: 16px;
  border-radius: 12px;
  color: #1a4466;
  font-weight: 600;
  margin-top: 24px;
  text-align: center;
}

.comparison {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.comparison-col {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.comparison-col.highlight {
  border: 3px solid #C28400;
  background: linear-gradient(135deg, #FFE8CC 0%, #fff 100%);
}

.comparison-col h3 {
  text-align: center;
  margin-bottom: 24px;
}

.comparison-col ul {
  padding-left: 0;
}

.comparison-col li {
  padding: 12px 0;
  color: #555;
  border-bottom: 1px solid #FFF8F0;
}

.comparison-note {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #C28400;
  margin-top: 24px;
}

/* ========================================
   Payment & Pricing Sections
   ======================================== */

.payment-info,
.payment-conditions,
.money-back {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

.payment-details,
.conditions-list {
  max-width: 700px;
  margin: 32px auto;
}

.payment-details p,
.conditions-list p {
  padding: 16px 0;
  border-bottom: 1px solid #FFF8F0;
}

.guarantee-note {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #C28400;
  margin-top: 24px;
}

.pricing-philosophy {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

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

.philosophy-item {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px;
  background-color: #FFF8F0;
  border-radius: 16px;
  margin-bottom: 20px;
}

.philosophy-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.pricing-table,
.package-pricing {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.price-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 340px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(194, 132, 0, 0.2);
}

.price-card h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.price-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #C28400;
  margin: 16px 0;
  display: block;
}

.price-card ul {
  flex-grow: 1;
  margin: 16px 0;
  padding-left: 0;
}

.price-card li {
  padding: 8px 0;
  color: #555;
  font-size: 15px;
}

.price-card .meta {
  font-size: 14px;
  color: #777;
  margin: 8px 0;
}

.package-highlight {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 48px;
  border-radius: 24px;
  border: 3px solid #C28400;
  box-shadow: 0 8px 24px rgba(194, 132, 0, 0.2);
  text-align: center;
  position: relative;
}

.badge {
  background-color: #C28400;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.package-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 16px;
}

.package-price {
  font-size: 48px;
  font-weight: 700;
  color: #C28400;
  margin: 24px 0;
}

.original-price {
  font-size: 24px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.savings {
  font-size: 20px;
  color: #2C5F8D;
  font-weight: 600;
  margin-bottom: 24px;
}

.package-includes {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
  padding-left: 0;
}

.package-includes li {
  padding: 12px 0;
  font-size: 16px;
  color: #555;
}

.package-ideal {
  font-style: italic;
  color: #777;
  margin: 24px 0;
}

/* ========================================
   Contact Page Elements
   ======================================== */

.contact-options,
.office-info,
.team-contact {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

.contact-methods,
.office-details,
.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.contact-method,
.office-address,
.office-hours,
.office-access,
.team-contact-card {
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  margin-bottom: 20px;
}

.contact-method h3,
.office-address h3,
.office-hours h3,
.office-access h3,
.team-contact-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.method-detail {
  color: #777;
  font-size: 14px;
  margin-top: 8px;
}

.visit-note {
  text-align: center;
  font-weight: 600;
  color: #C28400;
  margin-top: 32px;
}

.contact-form-section {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.form-intro {
  text-align: center;
  margin-bottom: 32px;
  color: #555;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-placeholder .note {
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
}

.form-fields-list {
  text-align: left;
  margin: 24px 0;
}

.form-fields-list p {
  padding: 8px 0;
  color: #555;
  font-size: 15px;
}

.security-note {
  text-align: center;
  font-size: 14px;
  color: #2C5F8D;
  margin: 24px 0;
}

/* ========================================
   Legal Pages - Clean Typography
   ======================================== */

.legal-page {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.legal-content h2 {
  color: #1a4466;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  color: #2C5F8D;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

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

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

.legal-content li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.6;
  list-style: disc;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  border: 1px solid #FFF8F0;
  text-align: left;
}

.legal-content th {
  background-color: #FFF8F0;
  color: #1a4466;
  font-weight: 600;
}

.legal-content td {
  color: #555;
}

.last-updated,
.subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 24px;
}

/* ========================================
   Thank You Page - Success Message
   ======================================== */

.thank-you {
  padding: 80px 20px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.checkmark {
  width: 100px;
  height: 100px;
  background-color: #C28400;
  color: #fff;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(194, 132, 0, 0.3);
}

.thank-you h1 {
  color: #1a4466;
  margin-bottom: 16px;
}

.next-steps,
.preparation,
.contact-repeat,
.trust-section {
  margin: 40px 0;
  text-align: left;
}

.next-steps h2,
.preparation h2,
.contact-repeat h3,
.trust-section h3 {
  text-align: center;
  margin-bottom: 24px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.steps .step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: #FFF8F0;
  border-radius: 16px;
  text-align: left;
}

.steps .step .icon {
  font-size: 24px;
  color: #C28400;
  min-width: 30px;
}

.preparation ul {
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
  padding-left: 0;
}

.preparation li {
  padding: 8px 0;
  color: #555;
  font-size: 16px;
}

.trust-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-stats span {
  font-size: 14px;
  font-weight: 600;
  color: #2C5F8D;
}

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

.next-steps-simple {
  margin: 32px 0;
}

.return-home {
  margin: 32px 0;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 24px;
  z-index: 1998;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
}

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

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

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

.cookie-accept {
  background-color: #C28400;
  color: #fff;
}

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

.cookie-reject {
  background-color: #f0f0f0;
  color: #555;
}

.cookie-reject:hover {
  background-color: #e0e0e0;
}

.cookie-settings {
  background-color: #2C5F8D;
  color: #fff;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

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

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

.cookie-modal-close:hover {
  background-color: #FFF8F0;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFF8F0;
  border-radius: 12px;
}

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

.cookie-category p {
  font-size: 14px;
  color: #555;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #C28400;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

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

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

/* ========================================
   Responsive Design - Mobile First
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .benefits,
  .services-overview,
  .process,
  .testimonials,
  .statistics {
    padding: 40px 16px;
  }
  
  .benefit-card,
  .service-card,
  .service-detail-card,
  .step,
  .step-detailed,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .process-steps,
  .process-steps-detailed {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .package-highlight {
    padding: 32px 20px;
  }
  
  .package-price {
    font-size: 36px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .comparison-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-item .year {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .trust-badges span {
    width: 100%;
  }
}

/* ========================================
   Animations & Transitions
   ======================================== */

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

.benefit-card,
.service-card,
.service-detail-card,
.step,
.testimonial-card,
.value-card,
.team-member {
  animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center {
  text-align: center;
}

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

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

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ========================================
   Print Styles
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #fff;
  }
  
  .container {
    max-width: 100%;
  }
}
.footer-bottom p {
  color: white;
}