/* ============================================
   MODERN BOLD DESIGN - NotarService München
   CSS Reset & Base Styles
   ============================================ */

/* CSS Reset */
* {
  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, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - Bold Modern Style
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #14395C;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
  text-shadow: 2px 2px 0px rgba(192, 154, 31, 0.2);
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #C09A1F 0%, #14395C 100%);
}

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

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

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

strong {
  font-weight: 700;
  color: #14395C;
}

a {
  color: #C09A1F;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #14395C;
  transform: translateX(3px);
}

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

li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* ============================================
   CONTAINER & LAYOUT - Flexbox Only
   ============================================ */

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

/* ============================================
   HEADER - Bold & Modern
   ============================================ */

header {
  background: linear-gradient(135deg, #14395C 0%, #1A4D7C 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(2deg);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #C09A1F;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #C09A1F;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - Burger Navigation
   ============================================ */

.mobile-menu-toggle {
  display: none;
  background: #C09A1F;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(192, 154, 31, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #14395C;
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #14395C 0%, #1A4D7C 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C09A1F;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C09A1F;
  padding-left: 20px;
  border-bottom-color: #C09A1F;
}

/* ============================================
   HERO SECTION - Bold & Impactful
   ============================================ */

.hero {
  background: linear-gradient(135deg, #14395C 0%, #1A4D7C 50%, #C09A1F 100%);
  padding: 100px 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(192, 154, 31, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #FFFFFF;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   BUTTONS - Bold Modern Style
   ============================================ */

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn:hover::before {
  left: 100%;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: #C09A1F;
  color: #FFFFFF;
  border-color: #C09A1F;
  box-shadow: 0 6px 20px rgba(192, 154, 31, 0.4);
}

.btn-primary:hover {
  background: #14395C;
  border-color: #14395C;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 57, 92, 0.4);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  color: #14395C;
  transform: translateY(-3px);
}

.btn-link {
  color: #C09A1F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* ============================================
   SECTIONS - Consistent Spacing
   ============================================ */

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

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

/* ============================================
   SERVICES GRID - Flexbox Layout
   ============================================ */

.services {
  background: #F5F5F5;
  padding: 80px 20px;
}

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

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

.service-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
  position: relative;
  border-top: 5px solid #C09A1F;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 57, 92, 0.05) 0%, rgba(192, 154, 31, 0.05) 100%);
  transition: width 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(20, 57, 92, 0.3);
  border-top-color: #14395C;
}

.service-card h3 {
  color: #14395C;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #333;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #C09A1F;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-card .btn-link {
  position: relative;
  z-index: 1;
}

/* ============================================
   FEATURES - Bold Grid
   ============================================ */

.features {
  background: #FFFFFF;
  padding: 80px 20px;
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: #F5F5F5;
  border-radius: 0;
  transition: all 0.3s ease;
  border-left: 5px solid #C09A1F;
}

.feature:hover {
  background: #14395C;
  transform: scale(1.05);
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.feature:hover h3 {
  color: #FFFFFF;
}

.feature p {
  font-size: 14px;
  color: #666;
  transition: color 0.3s ease;
}

.feature:hover p {
  color: #FFFFFF;
}

/* ============================================
   PROCESS STEPS - Visual Flow
   ============================================ */

.process {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 80px 20px;
}

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

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

.step {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  text-align: center;
  padding: 40px 32px;
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C09A1F 0%, #14395C 100%);
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 20px rgba(192, 154, 31, 0.3);
}

.step h3 {
  color: #14395C;
  margin-bottom: 16px;
}

.step p {
  color: #333;
}

/* ============================================
   TESTIMONIALS - Dark Text on Light BG
   ============================================ */

.testimonials {
  background: #F5F5F5;
  padding: 80px 20px;
}

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

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

.testimonial-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  border-left: 5px solid #C09A1F;
  position: relative;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  color: #14395C;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-align: right;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #14395C;
  font-weight: 700;
}

/* ============================================
   CTA SECTIONS - Bold Calls to Action
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #14395C 0%, #C09A1F 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

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

.cta-banner .availability {
  font-size: 14px;
  margin-top: 24px;
  font-weight: 600;
}

.cta-section {
  background: #F5F5F5;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

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

/* ============================================
   PAGE HERO - Subpage Headers
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #14395C 0%, #1A4D7C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 18px;
  margin-bottom: 32px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: #C09A1F;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
}

.trust-indicators span {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
}

.page-hero-simple {
  background: linear-gradient(135deg, #14395C 0%, #1A4D7C 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

/* ============================================
   DETAILED SERVICE CARDS
   ============================================ */

.services-detailed {
  padding: 80px 20px;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px auto;
  color: #333;
}

.service-card-detailed {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  border-top: 5px solid #C09A1F;
  margin-bottom: 24px;
}

.service-card-detailed h3 {
  color: #14395C;
  margin-bottom: 20px;
}

.service-card-detailed ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-card-detailed li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.service-card-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C09A1F;
  font-weight: 900;
}

.service-card-detailed .price {
  font-size: 28px;
  font-weight: 900;
  color: #C09A1F;
  margin: 24px 0;
}

/* ============================================
   PRICING TABLES
   ============================================ */

.pricing-section {
  background: #F5F5F5;
  padding: 80px 20px;
}

.price-table {
  background: #FFFFFF;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 2px solid #F5F5F5;
  gap: 20px;
  flex-wrap: wrap;
}

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

.price-row span:first-child {
  font-weight: 600;
  color: #14395C;
  flex: 1;
}

.price-row span:nth-child(2) {
  font-size: 24px;
  font-weight: 900;
  color: #C09A1F;
}

.price-row span:nth-child(3) {
  font-size: 14px;
  color: #666;
}

.price-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

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

.faq {
  padding: 80px 20px;
  background: #FFFFFF;
}

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

.faq-item {
  background: #F5F5F5;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 5px solid #C09A1F;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left-color: #14395C;
}

.faq-item h3 {
  color: #14395C;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #333;
}

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

.contact-methods {
  padding: 80px 20px;
}

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

.method-card {
  background: #F5F5F5;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  text-align: center;
  border-top: 5px solid #C09A1F;
}

.method-card h3 {
  color: #14395C;
  margin-bottom: 20px;
}

.method-card .note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.contact-form-section {
  background: #F5F5F5;
  padding: 80px 20px;
}

.form-note {
  background: #FFF9E6;
  border: 2px solid #C09A1F;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.contact-fields {
  background: #FFFFFF;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.contact-fields ul {
  list-style: none;
  padding-left: 0;
}

.contact-fields li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.contact-fields li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C09A1F;
  font-weight: 900;
}

.privacy-note {
  font-size: 13px;
  color: #666;
  margin-top: 24px;
  font-style: italic;
}

/* ============================================
   OPENING HOURS
   ============================================ */

.opening-hours {
  padding: 80px 20px;
  background: #FFFFFF;
}

.hours-list {
  max-width: 600px;
  margin: 32px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 2px solid #F5F5F5;
  gap: 20px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 700;
  color: #14395C;
}

.hours-row span:last-child {
  color: #333;
}

/* ============================================
   LOCATION & MAP
   ============================================ */

.location {
  background: #F5F5F5;
  padding: 80px 20px;
}

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

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.location-info {
  flex: 1 1 400px;
  background: #FFFFFF;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.location-info p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.location-map {
  background: #FFFFFF;
  padding: 80px 20px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

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

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

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

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

.text-section ul {
  margin: 24px 0;
}

.text-section li {
  margin-bottom: 12px;
}

.text-section strong {
  color: #14395C;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #14395C 0%, #C09A1F 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px auto;
  border: 5px solid #FFFFFF;
}

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

.subtitle {
  font-size: 18px;
  margin-bottom: 32px;
}

.confirmation {
  background: rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 32px;
  font-weight: 700;
}

.next-steps {
  padding: 80px 20px;
  background: #F5F5F5;
}

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

.time {
  font-size: 14px;
  color: #C09A1F;
  font-weight: 700;
  margin-top: 12px;
}

.what-to-expect {
  background: #FFFFFF;
  padding: 80px 20px;
}

.expectations-list {
  max-width: 700px;
  margin: 32px auto;
  list-style: none;
  padding-left: 0;
}

.expectations-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  font-size: 18px;
  border-bottom: 2px solid #F5F5F5;
}

.expectations-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #C09A1F;
  border-radius: 50%;
}

.note {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 24px;
}

.emergency-info {
  background: #FFF9E6;
  padding: 80px 20px;
  text-align: center;
}

.contact-info {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0;
}

.useful-links {
  padding: 80px 20px;
  background: #F5F5F5;
}

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

.link-card {
  background: #FFFFFF;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(20, 57, 92, 0.2);
}

.social-proof {
  background: #14395C;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.social-proof h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat {
  flex: 1 1 200px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #C09A1F;
  margin-bottom: 12px;
  font-weight: 900;
}

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

.contact-details {
  font-size: 18px;
  margin: 24px 0;
}

.contact-reminder {
  background: rgba(192, 154, 31, 0.1);
  border: 2px solid #C09A1F;
  padding: 24px;
  margin: 32px auto;
  max-width: 600px;
}

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

.service-overview {
  padding: 60px 20px;
  background: #FFFFFF;
}

.key-info {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 32px auto;
}

.key-info li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.key-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #C09A1F;
  border-radius: 50%;
}

.document-types {
  background: #F5F5F5;
  padding: 80px 20px;
}

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

.type-category {
  background: #FFFFFF;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  border-top: 5px solid #C09A1F;
}

.type-category h3 {
  color: #14395C;
  margin-bottom: 20px;
  font-size: 20px;
}

.type-category ul {
  list-style: none;
  padding-left: 0;
}

.type-category li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.type-category li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C09A1F;
}

.beglaubigung-process {
  background: #FFFFFF;
  padding: 80px 20px;
}

.duration-note {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-top: 32px;
  font-style: italic;
}

.vollmacht-intro {
  background: #FFFFFF;
  padding: 60px 20px;
}

.vollmacht-types {
  background: #F5F5F5;
  padding: 80px 20px;
}

.vollmacht-card {
  background: #FFFFFF;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  border-top: 5px solid #C09A1F;
  margin-bottom: 24px;
}

.vollmacht-card h3 {
  color: #14395C;
  margin-bottom: 16px;
}

.use-case {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 16px;
}

.vollmacht-process {
  background: #FFFFFF;
  padding: 80px 20px;
}

.timeline {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 32px;
  font-style: italic;
}

.pricing-vollmachten {
  background: #F5F5F5;
  padding: 80px 20px;
}

.company-story {
  padding: 80px 20px;
  background: #FFFFFF;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  background: #F5F5F5;
  padding: 24px 32px;
  border-left: 5px solid #C09A1F;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  font-weight: 600;
}

.mission-vision {
  background: #F5F5F5;
  padding: 80px 20px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 48px;
}

.mission-box, .vision-box {
  background: #FFFFFF;
  padding: 40px;
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  border-top: 5px solid #C09A1F;
}

.values {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-top: 5px solid #14395C;
}

.values h3 {
  color: #14395C;
  margin-bottom: 24px;
  text-align: center;
}

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

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

.values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C09A1F;
  font-weight: 900;
  font-size: 20px;
}

.why-choose-us {
  background: #FFFFFF;
  padding: 80px 20px;
}

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

.reason {
  background: #F5F5F5;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  border-top: 5px solid #C09A1F;
}

.statistics {
  background: linear-gradient(135deg, #14395C 0%, #1A4D7C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #C09A1F;
  display: block;
  margin-bottom: 12px;
}

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

.location-detail {
  background: #F5F5F5;
  padding: 80px 20px;
}

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

.pricing-intro ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.pricing-intro li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.pricing-intro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C09A1F;
  font-weight: 900;
}

.pricing-tables {
  padding: 80px 20px;
  background: #F5F5F5;
}

.price-section {
  margin-bottom: 48px;
}

.price-section h3 {
  text-align: center;
  color: #14395C;
  margin-bottom: 32px;
  font-size: 28px;
}

.package-deals {
  background: #FFFFFF;
  padding: 80px 20px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.package-card {
  background: #F5F5F5;
  padding: 40px;
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  text-align: center;
  border-top: 5px solid #C09A1F;
  transition: all 0.3s ease;
}

.package-card:hover {
  background: #14395C;
  transform: scale(1.05);
}

.package-card h3 {
  transition: color 0.3s ease;
}

.package-card:hover h3,
.package-card:hover p {
  color: #FFFFFF;
}

.price-comparison {
  margin: 24px 0;
  font-size: 18px;
}

.savings {
  color: #C09A1F;
  font-weight: 700;
  font-size: 20px;
}

.payment-methods {
  background: #F5F5F5;
  padding: 80px 20px;
}

.payment-list {
  max-width: 700px;
  margin: 32px auto;
  list-style: none;
  padding-left: 0;
}

.payment-list li {
  background: #FFFFFF;
  padding: 20px 20px 20px 50px;
  margin-bottom: 16px;
  position: relative;
  border-left: 5px solid #C09A1F;
}

.payment-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #C09A1F;
  font-weight: 900;
  font-size: 20px;
}

.pricing-faq {
  background: #FFFFFF;
  padding: 80px 20px;
}

.service-benefits {
  background: #F5F5F5;
  padding: 80px 20px;
}

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

.benefit {
  background: #FFFFFF;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  border-top: 5px solid #C09A1F;
}

.benefit h3 {
  color: #14395C;
  margin-bottom: 16px;
}

.faq-contact {
  background: #F5F5F5;
  padding: 80px 20px;
}

.thank-you-info {
  background: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.cookie-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.cookie-item {
  background: #F5F5F5;
  padding: 24px;
  border-left: 5px solid #C09A1F;
}

/* ============================================
   FOOTER - Modern Bold Design
   ============================================ */

footer {
  background: linear-gradient(135deg, #0A1F35 0%, #14395C 100%);
  color: #FFFFFF;
  padding: 60px 20px 32px 20px;
  margin-top: 60px;
}

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

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

.footer-section h4 {
  color: #C09A1F;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.footer-section a:hover {
  color: #C09A1F;
  padding-left: 5px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

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

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #14395C 0%, #1A4D7C 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

#cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

#accept-all {
  background: #C09A1F;
  color: #FFFFFF;
  border-color: #C09A1F;
}

#accept-all:hover {
  background: #FFFFFF;
  color: #14395C;
}

#reject-all {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

#reject-all:hover {
  background: #FFFFFF;
  color: #14395C;
}

#cookie-settings {
  background: transparent;
  color: #C09A1F;
  border-color: #C09A1F;
}

#cookie-settings:hover {
  background: #C09A1F;
  color: #FFFFFF;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C09A1F;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #14395C;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 32px;
  padding: 24px;
  background: #F5F5F5;
  border-left: 5px solid #C09A1F;
}

.cookie-category h3 {
  color: #14395C;
  margin-bottom: 12px;
  font-size: 20px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

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

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

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

/* ============================================
   RESPONSIVE DESIGN - Mobile First
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  
  /* Buttons */
  .btn { padding: 14px 28px; font-size: 14px; }
  
  /* Sections */
  section { padding: 40px 16px; margin-bottom: 40px; }
  
  /* Service Cards */
  .services-grid { gap: 24px; }
  .service-card { flex: 1 1 100%; padding: 32px 24px; }
  
  /* Features */
  .features-grid { gap: 24px; }
  .feature { flex: 1 1 100%; }
  
  /* Process Steps */
  .process-steps { gap: 24px; }
  .step { flex: 1 1 100%; }
  .step-number { width: 60px; height: 60px; font-size: 28px; }
  
  /* Testimonials */
  .testimonials-grid { gap: 24px; }
  .testimonial-card { flex: 1 1 100%; padding: 32px 24px; }
  
  /* Footer */
  .footer-content { gap: 32px; }
  .footer-section { flex: 1 1 100%; }
  
  /* Cookie Banner */
  #cookie-banner .container { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons button { flex: 1; }
  
  /* Tables */
  .price-row { flex-direction: column; align-items: flex-start; }
  .price-row span { width: 100%; }
  
  /* Contact Methods */
  .methods-grid { gap: 24px; }
  .method-card { flex: 1 1 100%; }
  
  /* Stats */
  .stats-grid { gap: 24px; }
  .stat { flex: 1 1 100%; }
  
  /* Mobile Menu Width */
  .mobile-menu { max-width: 100%; }
  
  /* Page Hero */
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Location */
  .location-content { gap: 24px; }
  .location-info { flex: 1 1 100%; padding: 32px 24px; }
  
  /* Types Grid */
  .types-grid { gap: 24px; }
  .type-category { flex: 1 1 100%; }
  
  /* Vollmacht Cards */
  .vollmacht-card { flex: 1 1 100%; }
  
  /* Reasons */
  .reasons-grid { gap: 24px; }
  .reason { flex: 1 1 100%; }
  
  /* Benefits */
  .benefits-grid { gap: 24px; }
  .benefit { flex: 1 1 100%; }
  
  /* Links */
  .links-grid { gap: 24px; }
  .link-card { flex: 1 1 100%; }
  
  /* Packages */
  .packages-grid { gap: 24px; }
  .package-card { flex: 1 1 100%; }
  
  /* Milestones */
  .milestones { gap: 16px; }
  .milestone { flex: 1 1 100%; }
  
  /* Mission Vision */
  .mission-vision-grid { gap: 24px; }
  .mission-box, .vision-box { flex: 1 1 100%; }
  
  /* Cookie Modal */
  .cookie-modal-content { padding: 32px 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .service-card { flex: 1 1 calc(50% - 32px); }
  .feature { flex: 1 1 calc(50% - 40px); }
  .step { flex: 1 1 calc(50% - 40px); }
  .type-category { flex: 1 1 calc(50% - 32px); }
  .reason { flex: 1 1 calc(50% - 32px); }
  .benefit { flex: 1 1 calc(50% - 32px); }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

.service-card {
  animation: fadeIn 0.6s ease-out;
}

.mobile-menu.active {
  animation: slideInRight 0.4s ease-out;
}

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

@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-banner, .cta-banner, .cta-section { display: none; }
  body { color: #000; background: #FFF; }
  a { text-decoration: underline; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

*:focus {
  outline: 3px solid #C09A1F;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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