/* ========================================
   FuseGadget Immobilien - Elegant Classic Design
   CSS Reset & Base Styles
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* ========================================
   Typography - Elegant Classic Style
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #E8904A;
}

ul {
  list-style: none;
}

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

/* ========================================
   Layout Container
======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0dcd5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

/* ========================================
   Mobile Menu Toggle Button
======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1a4a6d;
}

/* ========================================
   Mobile Menu Overlay
======================================== */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 12px 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;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #e0dcd5;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F8D;
}

/* ========================================
   Buttons - Elegant Style
======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Georgia', serif;
}

.btn-primary {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1a4a6d;
  border-color: #1a4a6d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.15);
}

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

/* ========================================
   Hero Section
======================================== */

.hero {
  background: linear-gradient(135deg, #f5f3ef 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #e0dcd5;
}

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

.hero-subheadline {
  font-size: 20px;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

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

.breadcrumb a {
  color: #2C5F8D;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e0dcd5;
}

.trust-badges span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.last-updated {
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 16px;
}

/* ========================================
   Section Spacing
======================================== */

.section,
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

/* ========================================
   City Selector Section
======================================== */

.city-selector {
  background-color: #ffffff;
  border-top: 1px solid #e0dcd5;
  border-bottom: 1px solid #e0dcd5;
}

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

.city-card {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px 24px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  transition: all 0.3s ease;
  margin-bottom: 0;
  position: relative;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C5F8D;
}

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

.city-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ========================================
   Services Grid
======================================== */

.services-overview,
.services-detailed {
  background-color: #ffffff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #E8904A;
}

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

.service-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #E8904A;
  margin-bottom: 20px;
  margin-top: 16px;
}

.service-detail {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 40px;
  margin-bottom: 32px;
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #2C5F8D;
}

.service-detail h3 {
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  margin: 20px 0;
}

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

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

/* ========================================
   Process Steps
======================================== */

.process {
  background-color: #f5f3ef;
  text-align: center;
}

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

.step {
  background-color: #ffffff;
  border: 1px solid #e0dcd5;
  padding: 32px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.step h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 16px;
}

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

/* ========================================
   Benefits Section
======================================== */

.benefits {
  background-color: #ffffff;
}

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

.benefit {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #2C5F8D;
}

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

.benefit p {
  color: #666;
  font-size: 15px;
}

/* ========================================
   Testimonials Section - IMPROVED CONTRAST
======================================== */

.testimonials {
  background-color: #f5f3ef;
  padding: 60px 20px;
}

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

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #e0dcd5;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #2C5F8D;
}

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

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

.testimonial-card .rating {
  color: #E8904A;
  font-size: 18px;
  margin-top: 8px;
}

.review-summary {
  text-align: center;
  color: #2c2c2c;
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
}

/* ========================================
   City Cards & Stats
======================================== */

.cities-overview {
  background-color: #ffffff;
}

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

.city-tagline {
  color: #666;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
}

.city-stats {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0dcd5;
}

.city-stats p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 8px;
}

/* ========================================
   Neighborhoods Section
======================================== */

.neighborhoods {
  background-color: #f5f3ef;
}

.neighborhood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.neighborhood-item {
  background-color: #ffffff;
  border: 1px solid #e0dcd5;
  padding: 28px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  transition: all 0.3s ease;
}

.neighborhood-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #E8904A;
}

.neighborhood-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 20px;
}

.neighborhood-item p {
  color: #4a4a4a;
  font-size: 15px;
}

/* ========================================
   Market Overview Sections
======================================== */

.market-summary,
.price-analysis,
.market-segments,
.investment-outlook {
  background-color: #ffffff;
}

.market-summary:nth-child(even),
.price-analysis:nth-child(even),
.market-segments:nth-child(even) {
  background-color: #f5f3ef;
}

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

.stat {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 28px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #2C5F8D;
}

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

.stat p {
  color: #E8904A;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.price-item {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 28px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

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

.price-item p {
  color: #4a4a4a;
  font-size: 14px;
}

.forecast {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e0dcd5;
  color: #2C5F8D;
  font-weight: 600;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.segment {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
}

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

.segment p {
  color: #4a4a4a;
}

.investment-outlook h3 {
  color: #2C5F8D;
  margin-top: 32px;
  margin-bottom: 16px;
}

.investment-outlook ul {
  list-style: none;
  margin-top: 20px;
}

.investment-outlook ul li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: #4a4a4a;
  border-bottom: 1px solid #e0dcd5;
}

.investment-outlook ul li::before {
  content: '►';
  position: absolute;
  left: 0;
  color: #E8904A;
}

/* ========================================
   Expert Insights
======================================== */

.expert-insights {
  background-color: #f5f3ef;
  padding: 60px 20px;
}

.expert-insights blockquote {
  background-color: #ffffff;
  border-left: 4px solid #E8904A;
  padding: 32px;
  margin: 0 auto;
  max-width: 800px;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.expert-insights blockquote p {
  font-size: 18px;
  color: #2c2c2c;
  line-height: 1.7;
  margin-bottom: 16px;
}

.expert-name {
  font-style: normal;
  font-weight: 600;
  color: #2C5F8D;
  font-size: 16px;
}

/* ========================================
   About Us Sections
======================================== */

.company-story,
.achievements,
.why-choose-us,
.team,
.client-promise {
  background-color: #ffffff;
}

.company-story:nth-child(even),
.achievements:nth-child(even),
.why-choose-us:nth-child(even),
.team:nth-child(even) {
  background-color: #f5f3ef;
}

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

.stat-card {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 300px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #2C5F8D;
}

.stat-card h3 {
  color: #E8904A;
  font-size: 36px;
  margin-bottom: 8px;
}

.stat-card p {
  color: #4a4a4a;
  font-size: 15px;
}

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

.reason {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #E8904A;
}

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

.reason p {
  color: #4a4a4a;
}

.promise-list {
  list-style: none;
  max-width: 800px;
  margin: 32px auto;
}

.promise-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #4a4a4a;
  border-bottom: 1px solid #e0dcd5;
  font-size: 16px;
}

.promise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8904A;
  font-weight: bold;
  font-size: 20px;
}

/* ========================================
   Contact Sections
======================================== */

.contact-options,
.contact-form-section,
.office-info,
.city-contacts {
  background-color: #ffffff;
}

.contact-options:nth-child(even),
.office-info:nth-child(even) {
  background-color: #f5f3ef;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-method {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #2C5F8D;
}

.contact-method h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.contact-detail {
  color: #1a1a1a;
  font-weight: 600;
  margin: 16px 0;
}

.response-time {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 32px;
  border-left: 4px solid #2C5F8D;
}

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

.form-note strong {
  color: #2C5F8D;
}

.form-note ul {
  list-style: none;
  margin: 16px 0;
}

.form-note ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a4a4a;
}

.form-note ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E8904A;
  font-size: 20px;
}

.response-guarantee {
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 20px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.detail {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
}

.detail h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 20px;
}

.detail p {
  color: #4a4a4a;
  line-height: 1.7;
}

.appointment-note {
  font-style: italic;
  color: #666;
  font-size: 14px;
  margin-top: 12px;
}

.central-contact {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  color: #2c2c2c;
}

/* ========================================
   FAQ Sections
======================================== */

.faq,
.faq-contact {
  background-color: #f5f3ef;
  padding: 60px 20px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e0dcd5;
  padding: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #2C5F8D;
}

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

.faq-item p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ========================================
   CTA Banners
======================================== */

.cta-banner,
.cta-consultation,
.cta-city-selection,
.cta-consultation-market,
.cta-meeting {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6d 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2,
.cta-consultation h2,
.cta-city-selection h2,
.cta-consultation-market h2,
.cta-meeting h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-consultation p,
.cta-city-selection p,
.cta-consultation-market p,
.cta-meeting p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-banner .btn,
.cta-consultation .btn,
.cta-city-selection .btn,
.cta-consultation-market .btn,
.cta-meeting .btn {
  background-color: #E8904A;
  border-color: #E8904A;
  color: #ffffff;
}

.cta-banner .btn:hover,
.cta-consultation .btn:hover,
.cta-city-selection .btn:hover,
.cta-consultation-market .btn:hover,
.cta-meeting .btn:hover {
  background-color: #d67935;
  border-color: #d67935;
}

.service-note {
  color: #ffffff;
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.9;
}

/* ========================================
   Legal Content Pages
======================================== */

.legal-hero {
  background-color: #f5f3ef;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #e0dcd5;
}

.legal-content {
  background-color: #ffffff;
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0dcd5;
}

.text-section:last-child {
  border-bottom: none;
}

.text-section h2 {
  text-align: left;
  color: #2C5F8D;
  margin-bottom: 20px;
  font-size: 28px;
}

.text-section h3 {
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.text-section p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul {
  list-style: none;
  margin: 16px 0;
}

.text-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4a4a4a;
}

.text-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E8904A;
  font-size: 20px;
}

/* ========================================
   Thank You Pages
======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #f5f3ef 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-hero h1 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

.confirmation-message {
  font-size: 22px;
  color: #E8904A;
  font-weight: 600;
  margin-bottom: 16px;
}

.next-steps {
  background-color: #ffffff;
  padding: 60px 20px;
}

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

.steps-simple {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.meanwhile-content,
.urgent-contact {
  background-color: #f5f3ef;
  padding: 60px 20px;
  text-align: center;
}

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

.content-link {
  background-color: #faf8f5;
  border: 1px solid #e0dcd5;
  padding: 16px 24px;
  display: inline-block;
  transition: all 0.3s ease;
  color: #2C5F8D;
  font-weight: 500;
}

.content-link:hover {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
  transform: translateY(-2px);
}

.contact-email {
  font-size: 20px;
  color: #2C5F8D;
  margin: 24px 0;
}

.office-hours {
  color: #666;
  font-size: 16px;
}

/* ========================================
   Comparison Table
======================================== */

.city-comparison {
  background-color: #f5f3ef;
  padding: 60px 20px;
}

.comparison-table {
  background-color: #ffffff;
  border: 1px solid #e0dcd5;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-table h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.comparison-table p {
  color: #4a4a4a;
  line-height: 1.8;
}

/* ========================================
   Local Expertise Section
======================================== */

.local-expertise {
  background-color: #ffffff;
  padding: 60px 20px;
}

.local-expertise p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.8;
}

/* ========================================
   Footer
======================================== */

footer {
  background-color: #1a1a1a;
  color: #d4d4d4;
  padding: 60px 20px 20px;
  border-top: 3px solid #2C5F8D;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

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

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

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

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

.copyright {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-consent.active {
  display: block;
}

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

.cookie-consent p {
  color: #d4d4d4;
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

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

.cookie-accept {
  background-color: #2C5F8D;
  color: #ffffff;
}

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

.cookie-reject {
  background-color: #666;
  color: #ffffff;
}

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

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

.cookie-settings:hover {
  background-color: #E8904A;
  color: #ffffff;
}

/* ========================================
   Cookie Preferences 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.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0dcd5;
}

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

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

.cookie-category p {
  color: #666;
  font-size: 14px;
  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 {
  color: #4a4a4a;
  cursor: pointer;
  font-size: 14px;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 2px;
  min-width: 120px;
}

.cookie-save {
  background-color: #2C5F8D;
  color: #ffffff;
}

.cookie-save:hover {
  background-color: #1a4a6d;
}

.cookie-modal-close {
  background-color: #666;
  color: #ffffff;
}

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

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

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Section padding */
  .section,
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Flexbox adjustments for mobile */
  .city-grid,
  .service-grid,
  .steps,
  .benefits-grid,
  .neighborhood-grid,
  .key-stats,
  .price-grid,
  .segments,
  .stats-grid,
  .reasons-grid,
  .contact-methods,
  .office-details {
    flex-direction: column;
  }
  
  .city-card,
  .service-card,
  .step,
  .benefit,
  .neighborhood-item,
  .stat,
  .price-item,
  .segment,
  .stat-card,
  .reason,
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* CTA buttons */
  .cta-group {
    flex-direction: column;
  }
  
  .cta-group .btn {
    width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit,
  .reason {
    flex: 1 1 calc(50% - 24px);
  }
  
  .city-card,
  .step,
  .neighborhood-item,
  .stat,
  .price-item,
  .segment {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  /* Desktop - hide mobile elements */
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
}

/* ========================================
   Accessibility & Interactions
======================================== */

:focus {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Selection color */
::selection {
  background-color: #2C5F8D;
  color: #ffffff;
}

::-moz-selection {
  background-color: #2C5F8D;
  color: #ffffff;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}