/* ============================================
   ImmoRight Rechtsberatung - Professional Corporate 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', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

/* ============================================
   Typography - Professional Corporate Style
   ============================================ */

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

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

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #4A5568;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 600;
  color: #163D6B;
}

a {
  color: #1B4B7F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

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

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

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

/* ============================================
   Header - Professional Corporate
   ============================================ */

header {
  background: linear-gradient(135deg, #163D6B 0%, #1B4B7F 100%);
  box-shadow: 0 2px 12px rgba(22, 61, 107, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #D4AF37;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

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

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

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

/* ============================================
   Mobile Menu - Burger Navigation
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #163D6B;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(22, 61, 107, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #163D6B 0%, #1B4B7F 100%);
  z-index: 2001;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  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: transparent;
  color: #FFFFFF;
  border: 2px solid #D4AF37;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 12px;
}

/* ============================================
   Hero Section - Professional Corporate
   ============================================ */

.hero {
  background: linear-gradient(135deg, #163D6B 0%, #1B4B7F 50%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,60 Q900,90 600,60 T0,60 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.hero p {
  color: #E8EEF3;
  font-size: 16px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.trust-indicators span {
  font-size: 14px;
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ============================================
   Buttons - Professional Corporate Style
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: #D4AF37;
  color: #163D6B;
  border-color: #D4AF37;
}

.btn-primary:hover {
  background: #C29D2F;
  color: #163D6B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  color: #163D6B;
  transform: translateY(-2px);
}

.btn:not(.btn-primary):not(.btn-secondary) {
  background: #163D6B;
  color: #FFFFFF;
}

.btn:not(.btn-primary):not(.btn-secondary):hover {
  background: #1B4B7F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 61, 107, 0.3);
}

/* ============================================
   Value Proposition Section
   ============================================ */

.value-proposition {
  background: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 20px;
}

.value-proposition > p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A5568;
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-point {
  flex: 1;
  min-width: 200px;
  padding: 32px 24px;
  background: #F8F9FA;
  border-radius: 8px;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
}

.value-point:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 61, 107, 0.1);
}

.value-point h3 {
  color: #163D6B;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-point p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 0;
}

/* ============================================
   Services Overview & Grid
   ============================================ */

.services-overview {
  background: #F8F9FA;
  padding: 60px 20px;
}

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

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

.service-card {
  flex: 1;
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 24px rgba(22, 61, 107, 0.15);
  transform: translateY(-4px);
}

.service-card h3 {
  color: #163D6B;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A5568;
  font-size: 15px;
  flex-grow: 1;
}

.services-overview .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ============================================
   Services Detail Page
   ============================================ */

.services-detail {
  background: #FFFFFF;
  padding: 60px 20px;
}

.service-item {
  background: #F8F9FA;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
}

.service-item h2 {
  color: #163D6B;
  margin-bottom: 12px;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 16px;
}

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

.service-item li {
  color: #4A5568;
  padding-left: 8px;
}

.pricing-transparency {
  background: #163D6B;
  color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.pricing-transparency h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.pricing-transparency p {
  color: #E8EEF3;
  font-size: 16px;
}

/* ============================================
   Testimonials - High Contrast for Readability
   ============================================ */

.testimonials {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(22, 61, 107, 0.12);
  border: 2px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(22, 61, 107, 0.18);
  transform: translateY(-4px);
}

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

.testimonial-card strong {
  color: #163D6B;
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: #718096;
  font-size: 14px;
  display: block;
}

.testimonials-featured {
  background: #F8F9FA;
  padding: 60px 20px;
}

/* ============================================
   Content Sections
   ============================================ */

.content-section {
  background: #FFFFFF;
  padding: 60px 20px;
}

.content-section h2 {
  margin-bottom: 24px;
}

.content-section p {
  max-width: 900px;
  margin-bottom: 20px;
}

.mission-vision {
  background: #F8F9FA;
  padding: 60px 20px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.mission-grid > div {
  flex: 1;
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
  border-left: 4px solid #D4AF37;
}

.mission-grid h3 {
  color: #163D6B;
  margin-bottom: 16px;
}

.values {
  background: #163D6B;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  margin-top: 32px;
}

.values h3 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.values li {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ============================================
   Team Section
   ============================================ */

.team {
  background: #FFFFFF;
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
}

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

.team-member {
  flex: 1;
  min-width: 250px;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 61, 107, 0.12);
}

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

.team-member p {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ============================================
   Approach Section
   ============================================ */

.approach {
  background: #F8F9FA;
  padding: 60px 20px;
}

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

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

.approach-item {
  flex: 1;
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
  border-top: 4px solid #D4AF37;
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 61, 107, 0.12);
}

.approach-item h4 {
  color: #163D6B;
  font-size: 20px;
  margin-bottom: 12px;
}

.approach-item p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 0;
}

/* ============================================
   Expertise Areas
   ============================================ */

.expertise-areas {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.expertise-item {
  flex: 1;
  min-width: 300px;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 61, 107, 0.12);
}

.expertise-item h3 {
  color: #163D6B;
  margin-bottom: 16px;
}

.expertise-item p {
  color: #4A5568;
  margin-bottom: 16px;
}

.metric {
  color: #D4AF37;
  font-weight: 600;
  font-size: 16px;
  margin-top: 12px;
  display: block;
}

.legal-frameworks {
  background: #F8F9FA;
  padding: 60px 20px;
}

.legal-frameworks h2 {
  margin-bottom: 24px;
}

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

.legal-frameworks li {
  background: #FFFFFF;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 6px rgba(22, 61, 107, 0.06);
}

.methodology {
  background: #FFFFFF;
  padding: 60px 20px;
}

/* ============================================
   Case Studies & Statistics
   ============================================ */

.case-studies {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.case-study {
  background: #F8F9FA;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  border-left: 4px solid #163D6B;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
}

.case-study h3 {
  color: #163D6B;
  margin-bottom: 16px;
}

.case-study p {
  margin-bottom: 12px;
}

.statistics {
  background: linear-gradient(135deg, #163D6B 0%, #1B4B7F 100%);
  padding: 60px 20px;
  color: #FFFFFF;
}

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

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

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-item strong {
  display: block;
  font-size: 42px;
  color: #D4AF37;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.stat-item p {
  color: #E8EEF3;
  font-size: 16px;
  margin-bottom: 0;
}

.review-platforms {
  background: #F8F9FA;
  padding: 60px 20px;
}

.review-platforms h2 {
  text-align: center;
  margin-bottom: 32px;
}

.review-platforms ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.review-platforms li {
  background: #FFFFFF;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
  border-left: 4px solid #D4AF37;
  font-size: 16px;
  color: #4A5568;
}

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

.contact-methods {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

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

.contact-method {
  flex: 1;
  min-width: 280px;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 61, 107, 0.12);
}

.contact-method h3 {
  color: #163D6B;
  margin-bottom: 16px;
}

.contact-method p {
  color: #4A5568;
  margin-bottom: 8px;
}

.contact-info {
  background: #F8F9FA;
  padding: 60px 20px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.team-contacts {
  background: #FFFFFF;
  padding: 60px 20px;
}

.team-contacts h2 {
  margin-bottom: 32px;
}

.team-contacts ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.team-contacts li {
  background: #F8F9FA;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 6px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 6px rgba(22, 61, 107, 0.06);
}

.what-happens-next {
  background: #F8F9FA;
  padding: 60px 20px;
}

.what-happens-next h2 {
  text-align: center;
  margin-bottom: 32px;
}

.what-happens-next ol {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.what-happens-next li {
  background: #FFFFFF;
  padding: 20px 24px 20px 60px;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(22, 61, 107, 0.08);
  position: relative;
  counter-increment: step-counter;
}

.what-happens-next li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #D4AF37;
  color: #163D6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

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

.cta-section {
  background: linear-gradient(135deg, #163D6B 0%, #1B4B7F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

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

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

.cta-section .btn {
  margin-bottom: 16px;
}

.availability {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.reassurance {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

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

.legal-page {
  background: #FFFFFF;
  padding: 60px 20px;
}

.legal-page h1 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #D4AF37;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #163D6B;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-page p {
  max-width: 900px;
  margin-bottom: 16px;
}

.legal-page ul {
  max-width: 900px;
  margin-bottom: 20px;
}

.legal-page a {
  color: #1B4B7F;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #D4AF37;
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you-page {
  background: #F8F9FA;
  padding: 80px 20px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(22, 61, 107, 0.12);
  text-align: center;
}

.thank-you-content h1 {
  color: #163D6B;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 40px;
}

.confirmation-steps {
  background: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin: 32px 0;
  text-align: left;
}

.confirmation-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.confirmation-steps ol {
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-message {
  background: #E8F5E9;
  border-left: 4px solid #4CAF50;
  padding: 20px;
  margin: 32px 0;
  border-radius: 6px;
}

.confirmation-message p {
  color: #2E7D32;
  margin-bottom: 0;
}

.next-steps {
  margin: 32px 0;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  max-width: 600px;
  margin: 0 auto;
}

.preparation-tips {
  background: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin: 32px 0;
  text-align: left;
}

.preparation-tips h2 {
  text-align: center;
  margin-bottom: 24px;
}

.preparation-tips ul {
  max-width: 600px;
  margin: 0 auto;
}

.contact-reminder {
  background: #163D6B;
  color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin: 32px 0;
}

.contact-reminder h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.contact-reminder p {
  color: #E8EEF3;
  margin-bottom: 0;
}

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

/* ============================================
   Footer - Professional Corporate
   ============================================ */

footer {
  background: #1A1F2E;
  color: #CBD5E0;
  padding: 60px 20px 24px;
}

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

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

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

.footer-section p {
  color: #CBD5E0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(203, 213, 224, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1F2E;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #D4AF37;
}

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

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

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

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #D4AF37;
  color: #163D6B;
  border-color: #D4AF37;
}

.cookie-btn-accept:hover {
  background: #C29D2F;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

.cookie-btn-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  color: #163D6B;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.cookie-category h3 {
  color: #163D6B;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background: #D4AF37;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

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

@media (max-width: 768px) {
  /* Mobile typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  /* Mobile header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections padding */
  .section {
    padding: 40px 20px;
  }
  
  /* Grid adjustments */
  .value-points {
    flex-direction: column;
  }
  
  .services-grid {
    flex-direction: column;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .mission-grid {
    flex-direction: column;
  }
  
  .team-grid {
    flex-direction: column;
  }
  
  .approach-grid {
    flex-direction: column;
  }
  
  .expertise-grid {
    flex-direction: column;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent mobile */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  
  /* Thank you page mobile */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  .value-points {
    gap: 20px;
  }
  
  .value-point {
    flex-basis: calc(50% - 10px);
  }
  
  .services-grid .service-card {
    flex-basis: calc(50% - 12px);
  }
  
  .testimonials-grid .testimonial-card {
    flex-basis: calc(50% - 12px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 {
    font-size: 56px;
  }
  
  .container {
    padding: 0 40px;
  }
}

/* ============================================
   Animation & Transitions
   ============================================ */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: #D4AF37;
  color: #163D6B;
}

::-moz-selection {
  background: #D4AF37;
  color: #163D6B;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .hero-cta,
  .cta-section {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  a {
    text-decoration: underline;
  }
}