/* ========================================
   VINTAGE RETRO DESIGN SYSTEM
   Rechtsanwalt Müller & Partner
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.7;
  color: #2c1810;
  background-color: #f5ebe0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY - VINTAGE STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1C3B5A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.2);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  border-bottom: 4px double #D4AF37;
  padding-bottom: 16px;
  display: inline-block;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 6px solid #D4AF37;
  padding-left: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #8B9A7E;
}

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

a {
  color: #1C3B5A;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: #D4AF37;
  border-bottom: 2px solid #D4AF37;
}

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

li {
  margin-bottom: 10px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #1C3B5A;
}

blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: #fff;
  border-left: 6px solid #D4AF37;
  font-style: italic;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

blockquote:before {
  content: '"';
  font-size: 72px;
  color: #D4AF37;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: #8B9A7E;
  font-size: 14px;
}

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

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

/* ========================================
   HEADER - VINTAGE STYLE
   ======================================== */

.site-header {
  background: linear-gradient(135deg, #1C3B5A 0%, #2c4d6d 100%);
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 4px solid #D4AF37;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #f5ebe0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
}

.main-nav a:hover {
  color: #D4AF37;
  border-bottom: 2px solid #D4AF37;
  transform: translateY(-2px);
}

.header-cta .btn-primary {
  background: #D4AF37;
  color: #1C3B5A;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  border: 3px solid #1C3B5A;
  transition: all 0.3s ease;
}

.header-cta .btn-primary:hover {
  background: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #1C3B5A;
}

/* ========================================
   MOBILE MENU - RETRO STYLE
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: #D4AF37;
  color: #1C3B5A;
  border: 3px solid #1C3B5A;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1C3B5A 0%, #2c4d6d 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  border-left: 6px solid #D4AF37;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D4AF37;
  color: #1C3B5A;
  border: 3px solid #fff;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #fff;
  color: #1C3B5A;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  color: #f5ebe0;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 16px;
  background: rgba(212, 175, 55, 0.1);
  border-bottom: 2px solid #D4AF37;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    padding: 16px 0;
  }

  .logo img {
    height: 50px;
  }
}

/* ========================================
   BUTTONS - VINTAGE STYLE
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #1C3B5A;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: 'Courier New', monospace;
}

.btn-primary {
  background: #D4AF37;
  color: #1C3B5A;
}

.btn-primary:hover {
  background: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #1C3B5A;
}

.btn-secondary {
  background: #8B9A7E;
  color: #fff;
  border-color: #1C3B5A;
}

.btn-secondary:hover {
  background: #1C3B5A;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #1C3B5A;
}

.btn-link {
  background: transparent;
  color: #1C3B5A;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: none;
  border: 2px solid #1C3B5A;
}

.btn-link:hover {
  background: #1C3B5A;
  color: #fff;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid #1C3B5A;
}

/* ========================================
   HERO SECTION - VINTAGE STYLE
   ======================================== */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B9A7E 0%, #a8b89d 100%);
  border-bottom: 8px solid #D4AF37;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(28, 59, 90, 0.05) 10px, rgba(28, 59, 90, 0.05) 20px);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #1C3B5A;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(212, 175, 55, 0.3);
  border: none;
  padding: 0;
  display: block;
}

.hero-subtitle {
  font-size: 20px;
  color: #2c1810;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: Georgia, serif;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px dashed #1C3B5A;
}

.trust-indicators span {
  font-size: 14px;
  font-weight: 700;
  color: #1C3B5A;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO INTERNAL PAGES
   ======================================== */

.hero-internal {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #1C3B5A 0%, #2c4d6d 100%);
  border-bottom: 6px solid #D4AF37;
  position: relative;
}

.hero-internal:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px);
  pointer-events: none;
}

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

.hero-internal h1 {
  color: #D4AF37;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0;
}

.hero-internal .hero-subtitle {
  color: #f5ebe0;
  font-size: 18px;
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #f5ebe0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.breadcrumb a {
  color: #D4AF37;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  border-bottom: 1px solid #D4AF37;
}

/* ========================================
   SECTIONS - VINTAGE STYLE
   ======================================== */

section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #2c1810;
  font-style: italic;
  font-family: Georgia, serif;
}

/* ========================================
   SERVICES GRID - FLEXBOX LAYOUT
   ======================================== */

.services-overview {
  background: #fff;
  border-top: 4px solid #D4AF37;
  border-bottom: 4px solid #D4AF37;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  padding: 32px;
  border: 4px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: sepia(0.3) hue-rotate(10deg);
}

.service-card h3 {
  font-size: 24px;
  color: #1C3B5A;
  margin-bottom: 12px;
  border-bottom: 3px double #D4AF37;
  padding-bottom: 12px;
}

.service-card p {
  color: #2c1810;
  line-height: 1.7;
  flex-grow: 1;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
  padding: 12px;
  background: #1C3B5A;
  text-align: center;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   VALUE PROPOSITION - FLEXBOX
   ======================================== */

.value-proposition {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
  border-top: 4px solid #8B9A7E;
  border-bottom: 4px solid #8B9A7E;
}

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

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 32px;
  border: 3px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
  border-color: #D4AF37;
}

.value-item img {
  width: 56px;
  height: 56px;
  filter: sepia(0.3) hue-rotate(10deg);
}

.value-item h3 {
  font-size: 22px;
  color: #1C3B5A;
  margin-bottom: 8px;
}

.value-item p {
  color: #2c1810;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .value-grid {
    flex-direction: column;
  }

  .value-item {
    flex: 1 1 100%;
  }
}

/* ========================================
   TESTIMONIALS - VINTAGE CARDS
   ======================================== */

.testimonials {
  background: #1C3B5A;
  border-top: 6px solid #D4AF37;
  border-bottom: 6px solid #D4AF37;
  position: relative;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px);
  pointer-events: none;
}

.testimonials h2 {
  color: #D4AF37;
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
  border: none;
  padding: 0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #f5ebe0;
  padding: 32px;
  border: 4px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:before {
  content: '❝';
  font-size: 80px;
  color: #D4AF37;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c1810;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-author {
  font-weight: 700;
  color: #1C3B5A;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 2px solid #D4AF37;
  padding-top: 16px;
  margin-top: 8px;
  font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   CTA BANNER - VINTAGE STYLE
   ======================================== */

.cta-banner,
.cta-contact,
.cta-services,
.cta-team,
.cta-thankyou {
  background: linear-gradient(135deg, #8B9A7E 0%, #a8b89d 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 6px solid #D4AF37;
  border-bottom: 6px solid #D4AF37;
  position: relative;
}

.cta-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(28, 59, 90, 0.05) 10px, rgba(28, 59, 90, 0.05) 20px);
  pointer-events: none;
}

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

.cta-banner h2 {
  color: #1C3B5A;
  font-size: 36px;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.cta-banner p {
  font-size: 18px;
  color: #2c1810;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER - VINTAGE STYLE
   ======================================== */

.site-footer {
  background: linear-gradient(135deg, #1C3B5A 0%, #2c4d6d 100%);
  color: #f5ebe0;
  padding: 60px 20px 20px;
  border-top: 8px solid #D4AF37;
  position: relative;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px);
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.footer-section h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px double #D4AF37;
  padding-bottom: 12px;
}

.footer-section p {
  color: #f5ebe0;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.footer-section a {
  color: #f5ebe0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-section a:hover {
  color: #D4AF37;
  border-bottom: 1px solid #D4AF37;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: #f5ebe0;
  font-size: 14px;
  margin: 0;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

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

/* ========================================
   ABOUT PAGE - VINTAGE ELEMENTS
   ======================================== */

.about-story {
  background: #fff;
  padding: 60px 20px;
}

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

.values-list li {
  flex: 1 1 calc(25% - 16px);
  min-width: 150px;
  padding: 20px;
  background: #8B9A7E;
  color: #fff;
  text-align: center;
  font-weight: 700;
  border: 3px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

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

.timeline-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  padding: 24px;
  background: #f5ebe0;
  border: 3px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.timeline-item strong {
  display: block;
  font-size: 28px;
  color: #D4AF37;
  margin-bottom: 8px;
}

.philosophy {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
  padding: 60px 20px;
}

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

.philosophy-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 32px;
  background: #fff;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.philosophy-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
  border-color: #D4AF37;
}

.philosophy-item h3 {
  color: #1C3B5A;
  margin-bottom: 12px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 8px;
}

.quote {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background: #1C3B5A;
  border: 4px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  font-style: italic;
  color: #f5ebe0;
  text-align: center;
  position: relative;
}

.quote:before {
  border: none;
}

.quote cite {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: #D4AF37;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.credentials {
  background: #fff;
  padding: 60px 20px;
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.credential-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #f5ebe0;
  border: 2px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.credential-item:hover {
  transform: translateX(4px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.credential-item img {
  width: 32px;
  height: 32px;
  filter: sepia(0.5) hue-rotate(10deg);
}

.credential-item p {
  margin: 0;
  color: #2c1810;
}

@media (max-width: 768px) {
  .values-list li {
    flex: 1 1 calc(50% - 10px);
  }

  .timeline-item {
    flex: 1 1 calc(50% - 12px);
  }

  .philosophy-grid {
    flex-direction: column;
  }

  .philosophy-item {
    flex: 1 1 100%;
  }

  .credentials-list {
    flex-direction: column;
  }

  .credential-item {
    flex: 1 1 100%;
  }
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */

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

.service-detail {
  background: #fff;
  padding: 48px 20px;
  margin-bottom: 0;
  border-bottom: 3px dashed #D4AF37;
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-header img {
  width: 72px;
  height: 72px;
  filter: sepia(0.3) hue-rotate(10deg);
}

.service-header h2 {
  margin: 0;
  flex: 1;
  border: none;
  padding: 0;
}

.service-header .service-price {
  margin: 0;
  padding: 12px 24px;
  font-size: 20px;
}

.service-details {
  margin-top: 32px;
  padding: 32px;
  background: #f5ebe0;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
  color: #1C3B5A;
  margin-bottom: 20px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 12px;
}

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

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

.service-details li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B9A7E;
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-header h2 {
    flex: none;
  }
}

/* ========================================
   TEAM PAGE
   ======================================== */

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

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

.team-stats span {
  padding: 16px 28px;
  background: #1C3B5A;
  color: #D4AF37;
  font-weight: 700;
  border: 3px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-members {
  background: #fff;
  padding: 60px 20px;
}

.team-member {
  margin-bottom: 48px;
  padding: 40px;
  background: #f5ebe0;
  border: 4px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.member-info h3 {
  font-size: 28px;
  color: #1C3B5A;
  margin-bottom: 8px;
  border-bottom: 3px solid #D4AF37;
  padding-bottom: 12px;
}

.member-title {
  font-size: 16px;
  color: #8B9A7E;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.member-specialization {
  font-size: 14px;
  color: #2c1810;
  margin-bottom: 20px;
  font-style: italic;
}

.member-info blockquote {
  margin-top: 24px;
  border-left-color: #8B9A7E;
}

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

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

.response-time {
  margin-top: 24px;
  padding: 16px 28px;
  background: #D4AF37;
  color: #1C3B5A;
  font-weight: 700;
  display: inline-block;
  border: 3px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  font-family: 'Courier New', monospace;
}

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

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

.contact-method {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 40px;
  background: #f5ebe0;
  border: 4px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
  border-color: #D4AF37;
  background: #fff;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(0.3) hue-rotate(10deg);
}

.contact-method h3 {
  font-size: 24px;
  color: #1C3B5A;
  margin-bottom: 16px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 12px;
  display: inline-block;
}

.contact-method a {
  color: #1C3B5A;
  font-weight: 700;
}

.contact-method a:hover {
  color: #D4AF37;
}

.office-hours {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
  padding: 60px 20px;
}

.hours-table {
  max-width: 600px;
  margin: 32px auto;
  background: #fff;
  border: 4px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px dashed #D4AF37;
  font-family: 'Courier New', monospace;
}

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

.hours-row:nth-child(even) {
  background: #f5ebe0;
}

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

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

.note {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background: #D4AF37;
  color: #1C3B5A;
  font-weight: 700;
  border: 3px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  font-family: 'Courier New', monospace;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location-map {
  background: #fff;
  padding: 60px 20px;
}

.address-display {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1C3B5A;
  margin-bottom: 40px;
  padding: 20px;
  background: #f5ebe0;
  border: 3px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.directions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.direction-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background: #f5ebe0;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.direction-item h3 {
  color: #1C3B5A;
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 8px;
  font-family: 'Courier New', monospace;
}

.direction-item p {
  color: #2c1810;
  line-height: 1.7;
}

.accessibility {
  text-align: center;
  padding: 20px;
  background: #8B9A7E;
  color: #fff;
  font-weight: 700;
  border: 3px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.trust-indicators-section {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
  padding: 60px 20px;
}

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

.trust-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 40px;
  background: #fff;
  border: 4px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.trust-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
  border-color: #D4AF37;
}

.trust-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  filter: sepia(0.3) hue-rotate(10deg);
}

.trust-item h3 {
  color: #1C3B5A;
  margin-bottom: 12px;
}

.trust-item p {
  color: #2c1810;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-grid,
  .directions,
  .trust-grid {
    flex-direction: column;
  }

  .contact-method,
  .direction-item,
  .trust-item {
    flex: 1 1 100%;
  }
}

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

.legal-hero {
  background: linear-gradient(135deg, #1C3B5A 0%, #2c4d6d 100%);
  padding: 60px 20px 40px;
  border-bottom: 6px solid #D4AF37;
}

.legal-subtitle {
  color: #f5ebe0;
  font-size: 18px;
  margin-bottom: 16px;
  font-style: italic;
}

.last-updated {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

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

.text-section {
  margin-bottom: 48px;
  padding: 32px;
  background: #f5ebe0;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.text-section h2 {
  color: #1C3B5A;
  font-size: 24px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 3px solid #D4AF37;
  padding: 0 0 12px 0;
}

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

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

.contact-dpo,
.rights-request,
.contact-cookies,
.contact-legal {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
  padding: 60px 20px;
  text-align: center;
}

.cookie-table {
  background: #fff;
  padding: 60px 20px;
}

.cookies-overview {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f5ebe0;
  border: 4px solid #1C3B5A;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.cookies-overview th {
  background: #1C3B5A;
  color: #D4AF37;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  border-bottom: 3px solid #D4AF37;
}

.cookies-overview td {
  padding: 16px;
  border-bottom: 2px dashed #D4AF37;
  color: #2c1810;
}

.cookies-overview tr:last-child td {
  border-bottom: none;
}

.cookies-overview tr:nth-child(even) {
  background: #fff;
}

.imprint-content {
  background: #fff;
  padding: 60px 20px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #8B9A7E 0%, #a8b89d 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #D4AF37;
  position: relative;
}

.thank-you-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(28, 59, 90, 0.05) 10px, rgba(28, 59, 90, 0.05) 20px);
  pointer-events: none;
}

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

.success-icon {
  margin-bottom: 32px;
}

.success-icon img {
  width: 80px;
  height: 80px;
  filter: sepia(0.3) hue-rotate(10deg) drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.1));
}

.thank-you-message {
  background: #fff;
  padding: 60px 20px;
}

.confirmation-text {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 24px;
  background: #f5ebe0;
  border: 3px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.next-steps {
  margin-top: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  padding: 24px;
  background: #f5ebe0;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-color: #D4AF37;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #D4AF37;
  color: #1C3B5A;
  border: 3px solid #1C3B5A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  font-family: 'Courier New', monospace;
}

.step-item p {
  margin: 0;
  font-size: 14px;
  color: #2c1810;
}

.helpful-resources {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
  padding: 60px 20px;
}

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

.resource-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: #fff;
  border: 4px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
  border-color: #D4AF37;
}

.resource-item h3 {
  color: #1C3B5A;
  margin-bottom: 12px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 8px;
}

.resource-item p {
  color: #2c1810;
  margin-bottom: 20px;
}

.preparation-tips {
  background: #fff;
  padding: 60px 20px;
}

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

.tip-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: #f5ebe0;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateX(8px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-color: #D4AF37;
}

.tip-item img {
  width: 48px;
  height: 48px;
  filter: sepia(0.3) hue-rotate(10deg);
}

.tip-item h3 {
  color: #1C3B5A;
  margin-bottom: 8px;
}

.tip-item p {
  color: #2c1810;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
  }

  .step-item {
    flex: 1 1 100%;
  }

  .resources-grid {
    flex-direction: column;
  }

  .resource-item {
    flex: 1 1 100%;
  }

  .tip-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1C3B5A 0%, #2c4d6d 100%);
  color: #f5ebe0;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 6px solid #D4AF37;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #f5ebe0;
}

.cookie-banner-text a {
  color: #D4AF37;
  text-decoration: underline;
  border: none;
}

.cookie-banner-text a:hover {
  color: #fff;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
  background: transparent;
  color: #D4AF37;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  font-family: 'Courier New', monospace;
}

.cookie-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.cookie-btn-accept {
  background: #D4AF37;
  color: #1C3B5A;
  border-color: #fff;
}

.cookie-btn-accept:hover {
  background: #fff;
}

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

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 59, 90, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #f5ebe0;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 6px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #D4AF37;
  color: #1C3B5A;
  border: 2px solid #1C3B5A;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #1C3B5A;
  color: #D4AF37;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #1C3B5A;
  font-size: 28px;
  margin-bottom: 24px;
  border: none;
  padding: 0;
  border-bottom: 4px double #D4AF37;
  padding-bottom: 16px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border: 3px solid #8B9A7E;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

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

.cookie-category h3 {
  color: #1C3B5A;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  width: 56px;
  height: 28px;
  background: #8B9A7E;
  border: 2px solid #1C3B5A;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.cookie-toggle.active:before {
  left: 30px;
}

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

.cookie-category p {
  color: #2c1810;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

.cookie-modal-buttons .cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }

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

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }

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

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

  h2 {
    font-size: 28px;
  }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

  .container {
    padding: 0 16px;
  }

  section {
    padding: 40px 16px;
  }
}

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

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

.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  background: #D4AF37;
  color: #1C3B5A;
  padding: 12px 24px;
  border: 3px solid #1C3B5A;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

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

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

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}