/* ========================================
   OrdnungsLicht - Luxury Premium CSS
   Design Style: Sophisticated Organization
   ======================================== */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2C5F7C;
  margin-bottom: 16px;
}

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

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

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

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

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

strong {
  font-weight: 600;
  color: #2C5F7C;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F1E8 100%);
  box-shadow: 0 2px 12px rgba(44, 95, 124, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(232, 184, 73, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2C5F7C;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8B849 0%, #D4A537 100%);
  transition: width 0.3s ease;
}

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

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E4A5F 0%, #2C5F7C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 95, 124, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2C5F7C;
  border: 2px solid #E8B849;
}

.btn-secondary:hover {
  background: #E8B849;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 184, 73, 0.3);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(44, 95, 124, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F1E8 100%);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2C5F7C;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 184, 73, 0.2);
  transition: all 0.3s ease;
}

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

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 50%, #F4F1E8 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 184, 73, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  color: #2C5F7C;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle,
.section-intro {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge,
.trust-indicator,
.guarantee {
  font-size: 14px;
  color: #E8B849;
  font-weight: 600;
  margin-top: 24px;
  letter-spacing: 0.5px;
}

/* ===== 404 HERO ===== */
.hero-404 {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content h1 {
  font-size: 120px;
  color: #E8B849;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-content h2 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E8B849 0%, #D4A537 100%);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ===== CARD GRIDS ===== */
.benefits-grid,
.services-grid,
.testimonial-grid,
.article-grid,
.tips-grid,
.suggestions-grid,
.methods-grid,
.stats-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* ===== CARDS ===== */
.benefit-card,
.service-card,
.testimonial-card,
.article-card,
.tip-card,
.suggestion-card,
.method-card,
.stat,
.step-card,
.step {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  border: 1px solid rgba(232, 184, 73, 0.2);
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #E8B849 0%, #D4A537 100%);
  border-radius: 8px 0 0 8px;
}

.benefit-card:hover,
.service-card:hover,
.article-card:hover,
.tip-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 124, 0.15);
  border-color: #E8B849;
}

.benefit-card h3,
.service-card h3,
.article-card h3,
.tip-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.tip-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F1E8 100%);
  padding: 32px;
  border-left: 4px solid #E8B849;
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.testimonial-card .author {
  color: #2C5F7C;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-top: 12px;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  background: #FFFFFF;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.08);
  border-left: 4px solid #E8B849;
  position: relative;
}

.service-detail h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

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

.service-detail .duration {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  position: relative;
}

.step h3 {
  color: #E8B849;
  font-size: 18px;
  margin-bottom: 12px;
}

.step h3::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #E8B849 0%, #D4A537 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(232, 184, 73, 0.3);
}

/* ===== PROJECT CARDS ===== */
.project {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.08);
  border-top: 4px solid #E8B849;
  position: relative;
}

.project h3 {
  color: #2C5F7C;
  margin-bottom: 20px;
}

.project .duration {
  font-weight: 600;
  color: #718096;
  margin: 16px 0;
}

.project .quote {
  font-style: italic;
  color: #2C5F7C;
  padding: 20px;
  background: #F4F1E8;
  border-radius: 4px;
  border-left: 4px solid #E8B849;
  margin-top: 20px;
}

/* ===== STATS ===== */
.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 40px 24px;
}

.stat h3 {
  font-size: 48px;
  color: #E8B849;
  margin-bottom: 8px;
  font-weight: 700;
}

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

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 184, 73, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.cta-section .guarantee,
.cta-section .trust-text {
  color: #E8B849;
}

/* ===== CONTACT SECTIONS ===== */
.contact-info {
  text-align: center;
  margin: 32px 0;
  padding: 24px;
  background: #F4F1E8;
  border-radius: 8px;
}

.contact-info p {
  margin-bottom: 12px;
  color: #2C5F7C;
}

.contact-cta {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  text-align: center;
}

.navigation-help {
  background: #FFFFFF;
  padding: 60px 20px;
}

/* ===== OFFICE HOURS ===== */
.office-hours {
  background: #F4F1E8;
}

.hours,
.appointments {
  background: #FFFFFF;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 95, 124, 0.08);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: #FFFFFF;
  padding: 60px 20px;
}

.legal-content h1 {
  color: #2C5F7C;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E8B849;
}

.legal-content h2 {
  color: #2C5F7C;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: #4A5568;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content h1 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

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

.phone-large {
  font-size: 28px;
  color: #E8B849;
  margin: 16px 0;
}

/* ===== PRICING TRANSPARENCY ===== */
.pricing-transparency {
  background: #F4F1E8;
}

.pricing-transparency ul {
  max-width: 600px;
  margin: 32px auto;
}

.pricing-transparency li {
  background: #FFFFFF;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  border-left: 4px solid #E8B849;
  color: #2C3E50;
  font-weight: 500;
}

/* ===== MISSION & VALUES ===== */
.mission-vision {
  background: #FFFFFF;
}

.mission,
.values {
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  border-radius: 8px;
  border-left: 4px solid #E8B849;
}

.values ul {
  margin-left: 24px;
}

.values li {
  margin-bottom: 12px;
  color: #2C3E50;
  font-weight: 500;
}

/* ===== FOUNDER STORY ===== */
.founder-story {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.founder-story p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 17px;
  line-height: 1.8;
}

/* ===== TRANSFORMATION SHOWCASE ===== */
.transformation-showcase {
  background: #FFFFFF;
}

.transformation-stats {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
}

.transformation-stats h2 {
  color: #FFFFFF;
}

.transformation-stats ul {
  max-width: 700px;
  margin: 32px auto;
}

.transformation-stats li {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #E8B849;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
}

/* ===== QUICK TIPS ===== */
.quick-tips {
  background: #F4F1E8;
}

/* ===== FEATURED ARTICLES ===== */
.featured-articles {
  background: #FFFFFF;
}

.read-time {
  display: inline-block;
  font-size: 13px;
  color: #718096;
  margin-top: 12px;
  padding: 4px 12px;
  background: #F4F1E8;
  border-radius: 4px;
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
  background: #FFFFFF;
}

.method-card h3 {
  color: #E8B849;
  margin-bottom: 16px;
}

/* ===== TRUST SIGNALS ===== */
.trust-signals {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.trust-signals ul {
  max-width: 700px;
  margin: 32px auto;
}

.trust-signals li {
  background: #FFFFFF;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #E8B849;
  color: #2C3E50;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(44, 95, 124, 0.08);
}

/* ===== CONTACT INFO DETAILS ===== */
.contact-info-details {
  background: #F4F1E8;
  padding: 60px 20px;
  text-align: center;
}

.contact-info-details p {
  margin-bottom: 12px;
  color: #2C3E50;
  font-size: 16px;
}

/* ===== WHILE WAITING ===== */
.while-waiting {
  background: #FFFFFF;
}

.contact-reminder {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  text-align: center;
  padding: 60px 20px;
}

/* ===== NEXT STEPS ===== */
.next-steps {
  background: #FFFFFF;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #F4F1E8;
  padding: 60px 20px 32px;
  margin-top: 0;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #E8B849;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
}

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

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  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;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 300px;
  color: #F4F1E8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-consent button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #E8B849;
  color: #2C5F7C;
}

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

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

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

.cookie-settings {
  background: transparent;
  color: #E8B849;
  border: 2px solid #E8B849;
}

.cookie-settings:hover {
  background: rgba(232, 184, 73, 0.1);
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C5F7C;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #F4F1E8;
  border-radius: 4px;
  border-left: 4px solid #E8B849;
}

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

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

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

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

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .benefit-card,
  .service-card,
  .article-card,
  .tip-card,
  .suggestion-card,
  .method-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat,
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Mobile Header */
  .main-nav,
  .header-content .btn-primary {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Mobile Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile Cards */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .article-card,
  .tip-card,
  .suggestion-card,
  .method-card,
  .stat,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .service-card,
  .benefit-card,
  .article-card {
    padding: 24px;
  }
  
  /* Mobile Sections */
  section {
    padding: 40px 20px;
  }
  
  .error-content h1 {
    font-size: 80px;
  }
  
  /* Mobile Footer */
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  /* Mobile Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-consent button {
    flex: 1 1 calc(50% - 6px);
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .error-content h1 {
    font-size: 60px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .phone-large {
    font-size: 22px;
  }
  
  .cookie-consent button {
    flex: 1 1 100%;
  }
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px solid #E8B849;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E8B849;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .btn-primary,
  .btn-secondary {
    border: 2px solid #2C5F7C;
    color: #2C5F7C;
    background: transparent;
  }
}