/* ============================================
   TrueTally Rechtsberatung - CSS Stylesheet
   Monochrome Sophisticated Design Style
   ============================================ */

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

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

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

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
}

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

a:hover {
  color: #4a4a4a;
}

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

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #000000;
}

em {
  font-style: italic;
}

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

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

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

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

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

/* ============================================
   HEADER
   ============================================ */

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

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

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

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

.tagline {
  font-size: 14px;
  color: #4a4a4a;
  font-style: italic;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

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

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

.mobile-menu-toggle:hover {
  background-color: #2a2a2a;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1a1a1a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #000000;
  padding-left: 8px;
}

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

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

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

.btn-primary:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

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

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

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

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

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

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

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

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

.trust-indicators span {
  font-size: 14px;
  color: #b0b0b0;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.page-hero {
  background-color: #f8f8f8;
  padding: 60px 20px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #000000;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #6a6a6a;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #000000;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.services-grid,
.features-grid,
.card-grid,
.content-grid,
.approach-grid,
.pricing-grid,
.resources-grid,
.team-members,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.service-card,
.feature,
.card,
.approach-item,
.pricing-card,
.resource-card,
.team-member-card,
.testimonial-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover,
.pricing-card:hover,
.resource-card:hover,
.team-member-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #b0b0b0;
}

.service-card h3,
.pricing-card h3,
.resource-card h3,
.team-member-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p,
.pricing-card p,
.resource-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
  display: block;
}

.service-card.highlight,
.pricing-card.highlight {
  border: 2px solid #000000;
  background-color: #f8f8f8;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #000000;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   SERVICE DETAIL CARDS
   ============================================ */

.service-detail-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.service-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

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

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

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 12px;
  color: #000000;
}

.step p {
  color: #4a4a4a;
}

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

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

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.testimonial-card .service {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-top: 32px;
}

/* ============================================
   TEAM MEMBERS
   ============================================ */

.position {
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

.cta-banner,
.cta-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

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

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

.benefits {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #e0e0e0;
  text-align: left;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 700;
}

.phone-display {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 32px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  display: inline-block;
}

/* ============================================
   LOCATION & CONTACT
   ============================================ */

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 300px;
}

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

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #f8f8f8;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.contact-option h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #000000;
}

.contact-value {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.contact-hours,
.contact-note {
  font-size: 14px;
  color: #6a6a6a;
}

/* ============================================
   FORMS
   ============================================ */

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
  border-radius: 4px;
}

.form-note {
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
  padding: 20px;
  margin-bottom: 24px;
}

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

.privacy-note {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 16px;
}

.privacy-note a {
  color: #000000;
  text-decoration: underline;
}

/* ============================================
   HOURS & SCHEDULES
   ============================================ */

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hours-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 16px;
  background-color: #f8f8f8;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* ============================================
   LISTS & UTILITIES
   ============================================ */

.values-list,
.specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.values-list span,
.specializations span {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.promise-list,
.factors-list,
.benefits-list,
.assurance-list,
.next-steps {
  list-style: none;
  padding-left: 0;
}

.promise-list li,
.factors-list li,
.benefits-list li,
.assurance-list li,
.next-steps li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  color: #4a4a4a;
}

.promise-list li::before,
.factors-list li::before,
.benefits-list li::before,
.assurance-list li::before,
.next-steps li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
  font-size: 20px;
}

.trust-badge {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  margin-top: 24px;
  letter-spacing: 0.5px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ============================================
   ERROR PAGES
   ============================================ */

.error-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f8f8f8;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-bottom: 24px;
}

.error-subheadline {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #000000;
}

.link-card:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.error-contact,
.contact-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

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

.thank-you-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f8f8f8;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.urgent-note {
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
  padding: 20px;
  margin-top: 32px;
}

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

.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
}

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

footer {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-column p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 32px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

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

.footer-legal a:hover {
  color: #ffffff;
}

.footer-bottom p {
  color: #6a6a6a;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cookie-accept:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

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

.cookie-reject:hover {
  background-color: #2a2a2a;
}

.cookie-settings {
  background-color: transparent;
  color: #b0b0b0;
  border-color: #4a4a4a;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-preference {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

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

.cookie-preference h3 {
  color: #000000;
  margin-bottom: 12px;
}

.cookie-preference p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

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

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

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-content {
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

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

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

  .hero-cta {
    flex-direction: column;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .service-card,
  .feature,
  .pricing-card,
  .resource-card,
  .team-member-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .contact-option {
    flex: 1 1 100%;
  }

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

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

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

  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }

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

  .link-card {
    flex: 1 1 calc(50% - 20px);
  }

  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 32px 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 16px;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  .service-card,
  .pricing-card,
  .team-member-card {
    padding: 24px;
  }

  .form-container {
    padding: 24px;
  }

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

  .error-code {
    font-size: 60px;
  }

  .thank-you-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.highlight-text {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 24px 0;
}

.phone-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  display: block;
  margin: 24px 0;
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

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

  body {
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}