/* ===================================
   RENTENBRÜCKE - PROFESSIONAL CORPORATE STYLE
   Complete CSS Styles for All Pages
   Design Style: Professional Corporate
   =================================== */

/* ===================================
   CSS RESET & NORMALIZE
   =================================== */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f7fafc;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1e3a5f;
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 700;
  color: #2d3748;
}

em {
  font-style: italic;
  color: #4a5568;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(240, 165, 0, 0.2);
  color: #f0a500;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1e3a5f 0%, #2c5f8d 100%);
  z-index: 2001;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  background-color: rgba(240, 165, 0, 0.2);
  padding-left: 28px;
}

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

.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3a5f" width="1200" height="600"/><g fill="%232c5f8d" opacity="0.3"><circle cx="100" cy="100" r="80"/><circle cx="1000" cy="450" r="120"/><circle cx="600" cy="300" r="60"/></g></svg>');
  opacity: 0.1;
  z-index: 0;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.trust-badges span {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

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

.hero-internal {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #e2e8f0;
  font-size: 18px;
}

/* ===================================
   BREADCRUMBS
   =================================== */

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

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

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

/* ===================================
   BUTTONS & CTAs
   =================================== */

.cta-primary,
.cta-secondary,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.cta-primary {
  background-color: #f0a500;
  color: #1e3a5f;
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.3);
}

.cta-primary:hover {
  background-color: #d89500;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 165, 0, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cta-button {
  background-color: #2c5f8d;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.cta-button:hover {
  background-color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.4);
}

/* ===================================
   CARDS & GRID LAYOUTS
   =================================== */

.service-grid,
.benefits-grid,
.stats-grid,
.groups-grid,
.values-grid,
.topics-grid,
.glossary-grid,
.testimonial-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.stat-item,
.group-card,
.value-item,
.topic-card,
.term,
.testimonial-card,
.help-link,
.service-detail-card {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.service-card,
.service-detail-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-item,
.value-item,
.stat-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
}

.group-card {
  flex: 1 1 100%;
  margin-bottom: 20px;
}

.topic-card,
.term {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-left: 4px solid #f0a500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.help-link {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  background-color: #f7fafc;
  border-color: #2c5f8d;
  font-weight: 600;
  color: #1e3a5f;
}

.service-card:hover,
.benefit-item:hover,
.value-item:hover,
.topic-card:hover,
.term:hover,
.help-link:hover,
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #f0a500;
}

.service-card h3,
.service-detail-card h2 {
  color: #1e3a5f;
  margin-bottom: 12px;
}

.service-card .price,
.service-detail-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #f0a500;
  margin: 16px 0;
}

.service-card p,
.service-detail-card p {
  color: #4a5568;
  margin-bottom: 12px;
}

.service-card em,
.service-detail-card em {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 14px;
  color: #718096;
}

.stat-item h3 {
  font-size: 48px;
  color: #f0a500;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #4a5568;
}

.testimonial-card p {
  font-style: italic;
  color: #2d3748;
  line-height: 1.8;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 700;
  color: #1e3a5f;
  margin-top: auto;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.problem-solution,
.services-overview,
.why-choose-us,
.testimonials,
.cta-final,
.services-detailed,
.target-groups,
.mission-vision,
.company-story,
.statistics,
.office-location,
.content-overview,
.knowledge-section,
.glossary,
.faq-content,
.contact-options,
.contact-form-section,
.office-info,
.faq-contact,
.privacy-security,
.legal-content,
.error-explanation,
.helpful-links,
.contact-support,
.thank-you-hero,
.confirmation-details,
.immediate-resources,
.navigation-links {
  padding: 60px 20px;
  margin-bottom: 0;
}

.problem-solution {
  background-color: #ffffff;
}

.services-overview,
.target-groups,
.knowledge-section {
  background-color: #f7fafc;
}

.why-choose-us,
.mission-vision,
.statistics {
  background-color: #edf2f7;
}

.testimonials {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta-final h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 24px;
}

.cta-final p,
.cta-section p {
  color: #e2e8f0;
  font-size: 18px;
  margin-bottom: 16px;
}

.contact-options,
.contact-info {
  color: #e2e8f0;
}

.intro {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  text-align: center;
}

.problem-list {
  background-color: #fff5e6;
  border-left: 4px solid #f0a500;
  padding: 24px 24px 24px 44px;
  margin: 24px 0;
  border-radius: 8px;
}

.problem-list li {
  margin-bottom: 12px;
  color: #2d3748;
  font-weight: 600;
}

/* ===================================
   SPECIAL ELEMENTS
   =================================== */

.case-example,
.success-rate,
.urgency,
.hope,
.note,
.important,
.tip,
.warning,
.urgent,
.email-note,
.last-updated,
.form-note {
  background-color: #f7fafc;
  border-left: 4px solid #2c5f8d;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.success-rate,
.case-example {
  border-left-color: #48bb78;
  background-color: #f0fff4;
}

.important,
.tip {
  border-left-color: #f0a500;
  background-color: #fff5e6;
}

.warning,
.urgency,
.urgent {
  border-left-color: #f56565;
  background-color: #fff5f5;
}

.hope {
  border-left-color: #667eea;
  background-color: #faf5ff;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  padding-left: 20px;
}

.benefits li {
  color: #e2e8f0;
  font-size: 16px;
  position: relative;
  padding-left: 12px;
}

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

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

.timeline-item {
  background-color: #ffffff;
  border-left: 4px solid #f0a500;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===================================
   FAQ SECTIONS
   =================================== */

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  color: #1e3a5f;
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #f0a500;
}

.faq-item {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

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

.faq-item p {
  color: #4a5568;
  margin-bottom: 8px;
}

/* ===================================
   CONTACT METHODS
   =================================== */

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #f0a500;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-method h2 {
  color: #1e3a5f;
  font-size: 24px;
  margin-bottom: 16px;
}

.resource-links,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.resource-link,
.nav-link {
  background-color: #2c5f8d;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resource-link:hover,
.nav-link:hover {
  background-color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===================================
   ERROR & THANK YOU PAGES
   =================================== */

.error-hero,
.legal-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #f0a500;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.error-content h1,
.legal-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.error-content p,
.legal-hero p {
  color: #e2e8f0;
  font-size: 18px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  color: #48bb78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.thank-you-content h1 {
  color: #ffffff;
}

.thank-you-content .subtitle {
  color: #e6fffa;
  font-size: 18px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

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

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

footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 60px 20px 24px;
}

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

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

.footer-section h3 {
  color: #f0a500;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #cbd5e0;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #cbd5e0;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-flex;
  align-items: center;
}

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

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  color: #e2e8f0;
  margin-bottom: 8px;
}

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

.cookie-accept-all,
.cookie-reject-all,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 14px;
}

.cookie-accept-all {
  background-color: #f0a500;
  color: #1e3a5f;
}

.cookie-accept-all:hover {
  background-color: #d89500;
  transform: translateY(-2px);
}

.cookie-reject-all {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.cookie-settings {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #f0a500;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #4a5568;
  padding: 4px;
  transition: transform 0.2s ease;
}

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

.cookie-modal h2 {
  color: #1e3a5f;
  margin-bottom: 24px;
}

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

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

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

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-save {
  background-color: #2c5f8d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background-color: #1e3a5f;
  transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .service-card,
  .service-detail-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-item h3 {
    font-size: 40px;
  }
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

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

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Adjust header */
  .header-content {
    justify-content: center;
  }

  /* Full width cards on mobile */
  .service-card,
  .benefit-item,
  .stat-item,
  .value-item,
  .topic-card,
  .term,
  .testimonial-card,
  .contact-method,
  .help-link,
  .step,
  .service-detail-card {
    flex: 1 1 100%;
  }

  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

  .stat-item h3 {
    font-size: 36px;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }

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

  .section {
    padding: 32px 20px;
  }

  .problem-solution,
  .services-overview,
  .why-choose-us,
  .testimonials,
  .cta-final,
  .services-detailed,
  .target-groups,
  .mission-vision,
  .company-story,
  .statistics,
  .office-location,
  .content-overview,
  .knowledge-section,
  .glossary,
  .faq-content,
  .contact-options,
  .contact-form-section,
  .office-info,
  .faq-contact,
  .privacy-security,
  .legal-content,
  .error-explanation,
  .helpful-links,
  .contact-support,
  .thank-you-hero,
  .confirmation-details,
  .immediate-resources,
  .navigation-links {
    padding: 40px 20px;
  }
}

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

  h2 {
    font-size: 22px;
  }

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

  .service-card .price,
  .service-detail-card .price {
    font-size: 20px;
  }

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

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

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

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

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

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

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

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

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background-color: #ffffff;
  }

  .hero,
  .hero-internal,
  .cta-final,
  .cta-section {
    background: #ffffff;
    color: #000000;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000000;
  }
}

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