/* ============================================
   CRYSTAL FLAKE - COMPLETE CSS STYLESHEET
   Warm & Friendly Design Style
   ============================================ */

/* ============================================
   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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF9F0;
  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;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #2C3E50;
  font-weight: 700;
}

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

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B35;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #2C3E50;
  font-size: 18px;
  font-weight: 500;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  padding: 10px 18px;
  color: #2C3E50;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

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

.hero h1 {
  color: #2C3E50;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero .subheadline {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #FF6B35;
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

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

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

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
  margin-top: 32px;
}

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

/* ============================================
   TRUST BADGES
   ============================================ */

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

.trust-badges span {
  padding: 12px 24px;
  background: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #2C3E50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.stats-bar span {
  padding: 12px 24px;
  background: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #FF6B35;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ============================================
   SECTIONS
   ============================================ */

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */

.problem-solution {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem {
  font-size: 18px;
  color: #E74C3C;
  font-weight: 500;
  padding: 20px;
  background: #FFEDED;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid #E74C3C;
}

.solution {
  font-size: 18px;
  color: #27AE60;
  font-weight: 500;
  padding: 20px;
  background: #E8F8F5;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid #27AE60;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.benefits li {
  flex: 1 1 200px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  border-radius: 12px;
  font-weight: 500;
  color: #2C3E50;
  list-style: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  border-radius: 24px;
}

.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: 380px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.service-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
  margin: 16px 0;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

.service-card.featured {
  border: 3px solid #FF6B35;
  position: relative;
}

.service-card.premium {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  border: 3px solid #FF8C42;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #FF6B35;
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.testimonial {
  font-style: italic;
  font-size: 14px;
  color: #666;
  margin-top: 16px;
  padding: 12px;
  background: #FFF9F0;
  border-radius: 8px;
}

.guarantee,
.bonus,
.success {
  font-size: 13px;
  padding: 12px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 500;
}

.guarantee {
  background: #E8F8F5;
  color: #27AE60;
  border-left: 3px solid #27AE60;
}

.bonus {
  background: #FFF3E0;
  color: #FF8C42;
  border-left: 3px solid #FF8C42;
}

.success {
  background: #E3F2FD;
  color: #2196F3;
  border-left: 3px solid #2196F3;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process {
  background: white;
  border-radius: 24px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step h3 {
  color: #FF6B35;
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #555;
  font-size: 15px;
}

/* ============================================
   DISTRICTS GRID
   ============================================ */

.districts {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  border-radius: 24px;
}

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

.district-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 400px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.district-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.district-card h3 {
  color: #2C3E50;
  font-size: 24px;
  margin-bottom: 12px;
}

.district-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #FF6B35;
  margin-top: 16px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.stats .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat h3 {
  font-size: 48px;
  color: white;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat p {
  font-size: 16px;
  color: white;
  margin: 0;
}

.certifications {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.certifications p {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #2C3E50;
  margin: 0;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: #FF6B35;
  font-style: normal;
  font-size: 15px;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  border-radius: 24px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
  transform: translateX(4px);
}

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

.faq-item p {
  color: #555;
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  text-align: center;
  border-radius: 24px;
  padding: 60px 40px;
}

.cta h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 24px;
}

.cta p {
  font-size: 18px;
  color: white;
  margin-bottom: 24px;
}

.cta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  margin: 32px 0;
}

.cta ul li {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.cta .btn-primary {
  background: white;
  color: #FF6B35;
}

.cta .btn-primary:hover {
  background: #FFF9F0;
  transform: translateY(-3px);
}

.availability,
.working-hours {
  margin-top: 24px;
  font-size: 14px;
  color: white;
  opacity: 0.9;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content {
  background: white;
  border-radius: 24px;
  padding: 40px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 32px;
  background: #FFF9F0;
  border-radius: 16px;
}

.text-section h2 {
  text-align: left;
  color: #2C3E50;
  margin-bottom: 24px;
}

.text-section h3 {
  color: #FF6B35;
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section ul,
.text-section ol {
  margin: 20px 0;
  padding-left: 24px;
}

.text-section li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #555;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
  font-size: 18px;
}

.info-box,
.warning-box,
.highlight,
.cta-box {
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid;
}

.info-box {
  background: #E3F2FD;
  border-color: #2196F3;
  color: #1565C0;
}

.warning-box {
  background: #FFF3E0;
  border-color: #FF8C42;
  color: #E65100;
  font-weight: 500;
}

.highlight {
  background: #E8F8F5;
  border-color: #27AE60;
  color: #1B5E20;
  font-weight: 500;
}

.cta-box {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  border-color: #FF6B35;
  text-align: center;
  padding: 32px;
}

.cta-box p {
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 20px;
}

.service-promo {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  margin: 24px 0;
  font-weight: 500;
}

.service-promo a {
  color: white;
  text-decoration: underline;
}

.service-promo a:hover {
  color: #FFF9F0;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */

.toc {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.toc h2 {
  text-align: left;
  color: #2C3E50;
  margin-bottom: 24px;
  font-size: 24px;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 12px;
}

.toc a {
  color: #FF6B35;
  font-weight: 500;
  padding: 8px 16px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toc a:hover {
  background: white;
  transform: translateX(8px);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #FFE8CC;
}

.comparison-table th {
  font-weight: 600;
  font-size: 15px;
}

.comparison-table tbody tr:hover {
  background: #FFF9F0;
}

.comparison-table td {
  color: #2C3E50;
}

/* ============================================
   DISTRICT DETAILED
   ============================================ */

.district-detailed {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.district-detailed h2 {
  text-align: left;
  color: #2C3E50;
  margin-bottom: 24px;
}

.district-detailed .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  background: transparent;
  padding: 0;
}

.district-detailed .stats span {
  padding: 10px 20px;
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  color: #2C3E50;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.pros,
.cons {
  flex: 1 1 300px;
  padding: 24px;
  border-radius: 12px;
}

.pros {
  background: #E8F8F5;
  border-left: 4px solid #27AE60;
}

.cons {
  background: #FFEDED;
  border-left: 4px solid #E74C3C;
}

.pros h4 {
  color: #27AE60;
  margin-bottom: 16px;
}

.cons h4 {
  color: #E74C3C;
  margin-bottom: 16px;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
}

.pros li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #1B5E20;
}

.pros li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
}

.cons li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #C62828;
}

.cons li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: 700;
}

.price-trend {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  padding: 16px 24px;
  border-radius: 12px;
  margin: 24px 0;
  font-weight: 500;
  color: #1565C0;
  border-left: 4px solid #2196F3;
}

/* ============================================
   SERVICE HIGHLIGHTS & DESCRIPTIONS
   ============================================ */

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.service-highlights span {
  padding: 12px 24px;
  background: white;
  border-radius: 50px;
  font-weight: 500;
  color: #2C3E50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-description {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-description h3 {
  color: #FF6B35;
  margin-bottom: 16px;
}

.service-description ul {
  list-style: none;
  padding: 0;
}

.service-description li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #555;
}

.service-description li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   WHY US & REASONS
   ============================================ */

.why-us {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  border-radius: 24px;
}

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

.reason {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.reason:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.reason h4 {
  color: #FF6B35;
  margin-bottom: 12px;
}

.reason p {
  color: #555;
  margin: 0;
}

/* ============================================
   TEAM & VALUES
   ============================================ */

.mission {
  font-size: 20px;
  text-align: center;
  color: #2C3E50;
  font-weight: 500;
  padding: 32px;
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  border-radius: 16px;
  margin: 32px 0;
  line-height: 1.8;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.value {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value h4 {
  color: #FF6B35;
  margin-bottom: 12px;
}

.value p {
  color: #555;
  margin: 0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

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

.team-member p {
  color: #555;
  margin-bottom: 12px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.milestone {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: #2C3E50;
}

.achievements,
.principles,
.differences {
  list-style: none;
  padding: 0;
}

.achievements li,
.principles li,
.differences li {
  padding: 16px 20px 16px 48px;
  position: relative;
  margin-bottom: 12px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #2C3E50;
}

.achievements li:before,
.principles li:before,
.differences li:before {
  content: "★";
  position: absolute;
  left: 16px;
  color: #FF6B35;
  font-size: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.quick-contact {
  font-size: 20px;
  font-weight: 600;
  color: #FF6B35;
  margin-top: 16px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.method h3 {
  color: #FF6B35;
  margin-bottom: 16px;
}

.method p {
  color: #555;
  margin-bottom: 8px;
}

.contact-form-section {
  background: white;
  padding: 48px;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-placeholder {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  padding: 40px;
  border-radius: 12px;
  border: 2px dashed #FF6B35;
}

.form-placeholder p {
  margin-bottom: 24px;
  font-weight: 500;
  color: #2C3E50;
}

.form-placeholder strong {
  color: #FF6B35;
  font-size: 15px;
}

.office-details {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0;
}

.office-details h2 {
  text-align: left;
  color: #2C3E50;
}

.office-details h3 {
  color: #FF6B35;
  margin-top: 24px;
}

.office-details ul {
  list-style: none;
  padding: 0;
}

.office-details li {
  padding: 12px 0;
  color: #2C3E50;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  background: #E0E0E0;
  height: 300px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  color: #666;
  font-weight: 500;
}

.team-contacts {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0;
}

.contact-card {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-card h4 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.contact-card p {
  color: #555;
  margin-bottom: 8px;
}

.company-details {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
}

.company-details h2 {
  text-align: left;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.hero.thank-you {
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #27AE60;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.next-steps {
  background: white;
  padding: 48px;
  border-radius: 16px;
  margin: 40px 0;
}

.suggestions {
  margin: 40px 0;
}

.suggestions h2,
.suggestions h3 {
  text-align: center;
  margin-bottom: 32px;
}

.suggestion-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.suggestion-cards .card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.suggestion-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.suggestion-cards .card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.suggestion-cards .card p {
  color: #555;
  margin-bottom: 20px;
}

.social-proof {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFD4A3 100%);
  padding: 48px;
  border-radius: 16px;
  margin: 40px 0;
}

.alternative-contact {
  background: white;
  padding: 48px;
  border-radius: 16px;
  margin: 40px 0;
}

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

.option {
  flex: 1 1 300px;
  padding: 24px;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  border-radius: 12px;
  text-align: center;
}

.option h4 {
  color: #FF6B35;
  margin-bottom: 12px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

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

.content.legal .text-section {
  max-width: 100%;
}

.content.legal h2 {
  text-align: left;
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 2px solid #FFE8CC;
}

.content.legal h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content.legal ul,
.content.legal ol {
  margin: 20px 0;
  padding-left: 32px;
}

.content.legal li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #555;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

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

.footer-section img {
  max-height: 50px;
  margin-bottom: 16px;
}

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

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

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #FF8C42;
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

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

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FF6B35;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category {
  padding: 20px;
  background: #FFF9F0;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #FF6B35;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #555;
  margin-bottom: 12px;
}

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

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

.cookie-toggle label {
  font-weight: 500;
  color: #2C3E50;
  cursor: pointer;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subheadline {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .service-card,
  .district-card,
  .step,
  .method,
  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .stats .container {
    flex-direction: column;
  }

  .stat {
    width: 100%;
  }

  .pros-cons {
    flex-direction: column;
  }

  .pros,
  .cons {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  section {
    padding: 32px 16px;
  }

  .text-section {
    padding: 24px 16px;
  }

  .service-card,
  .district-detailed,
  .office-details {
    padding: 24px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

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

  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
  }
}