/* ===================================
   Rare Moon Rentenberatung - Style.css
   Scandinavian Clean Design
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1B4965;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #5FA8D3;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #1B4965;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1B4965;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

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

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

.mobile-nav a {
  font-size: 18px;
  color: #2C3E50;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #1B4965;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 8px;
}

.btn-primary {
  background-color: #1B4965;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.2);
}

.btn-primary:hover {
  background-color: #5FA8D3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 73, 101, 0.3);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #1B4965;
  border: 2px solid #1B4965;
}

.btn-secondary:hover {
  background-color: #1B4965;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #1B4965;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  color: #1B4965;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 20px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 32px;
}

.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;
  font-size: 14px;
  color: #6B7280;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* PROBLEM SOLUTION */
.problem-solution {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 32px;
}

.problem-list {
  max-width: 700px;
  margin: 0 auto 32px;
}

.problem-list li {
  padding: 16px 0;
  border-bottom: 1px solid #F0F0F0;
  color: #2C3E50;
  font-size: 16px;
}

.solution-statement {
  font-size: 18px;
  font-weight: 500;
  color: #1B4965;
  text-align: center;
  margin-bottom: 32px;
}

/* SERVICE GRID */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 12px;
}

.service-card p {
  color: #6B7280;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 600;
  color: #1B4965;
  margin: 8px 0;
}

/* PROCESS STEPS */
.process {
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
}

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

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #6B7280;
}

.process-note {
  text-align: center;
  font-size: 18px;
  color: #1B4965;
  font-weight: 500;
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.benefit {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 12px;
}

.benefit p {
  color: #6B7280;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #1B4965;
  font-style: italic;
  border-top: 2px solid #5FA8D3;
  padding-top: 16px;
  margin-top: auto;
}

.trust-seal {
  text-align: center;
  font-size: 16px;
  color: #1B4965;
  font-weight: 500;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1B4965 0%, #5FA8D3 100%);
  color: #FFFFFF;
  padding: 80px 40px;
  text-align: center;
  border-radius: 12px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 36px;
}

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

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

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #1B4965;
}

.cta-section .btn-primary:hover {
  background-color: #CAE9FF;
  color: #1B4965;
}

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

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1B4965;
}

.contact-info {
  font-size: 16px;
  color: #CAE9FF;
}

/* FOOTER */
footer {
  background-color: #1B4965;
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 250px;
}

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

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

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

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

.footer-nav a:hover {
  color: #CAE9FF;
}

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

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

/* SERVICE DETAIL */
.service-detail {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-detail h2 {
  font-size: 28px;
  color: #1B4965;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 600;
  color: #5FA8D3;
  margin-bottom: 16px;
  display: block;
}

.service-detail h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-detail ul {
  margin-bottom: 24px;
}

.service-detail li {
  color: #6B7280;
  padding: 8px 0;
}

/* PRICING TRANSPARENCY */
.pricing-transparency {
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 40px;
}

.pricing-transparency h2 {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-transparency ul {
  max-width: 700px;
  margin: 0 auto;
}

/* MISSION & STORY */
.mission, .story, .expertise, .team {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.value {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
  margin-bottom: 20px;
}

.value h4 {
  color: #1B4965;
  font-size: 20px;
  margin-bottom: 12px;
}

.value p {
  color: #6B7280;
}

/* EXPERTISE GRID */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.expertise-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 12px;
  border-left: 4px solid #5FA8D3;
  margin-bottom: 20px;
}

.expertise-item h3 {
  color: #1B4965;
  margin-bottom: 12px;
}

.expertise-item p {
  color: #6B7280;
}

/* SUCCESS METRICS */
.success-metrics {
  background: linear-gradient(135deg, #1B4965 0%, #5FA8D3 100%);
  border-radius: 12px;
  padding: 60px 40px;
  color: #FFFFFF;
  text-align: center;
}

.success-metrics h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

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

.metric .number {
  font-size: 48px;
  font-weight: 700;
  color: #CAE9FF;
  margin-bottom: 8px;
}

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

.disclaimer {
  font-size: 14px;
  color: #CAE9FF;
  font-style: italic;
}

/* FAQ */
.faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.faq-item p {
  color: #6B7280;
}

/* ARTICLES & KNOWLEDGE */
.article {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.article h2 {
  margin-bottom: 24px;
}

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

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.category-list li {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  padding: 20px;
  border-radius: 8px;
  font-weight: 500;
  color: #1B4965;
  text-align: center;
  margin-bottom: 0;
}

/* CONTACT PAGE */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #1B4965;
  margin-bottom: 16px;
}

.contact-method p {
  color: #6B7280;
  font-size: 15px;
}

.form-note {
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #5FA8D3;
}

.form-placeholder {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  border: 2px dashed #CAE9FF;
  color: #6B7280;
}

/* LEGAL PAGES */
.legal-page {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  color: #6B7280;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #CAE9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #5FA8D3;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.thank-you-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 18px;
  color: #6B7280;
}

.steps-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.steps-list li {
  padding: 16px 0 16px 48px;
  position: relative;
  counter-increment: step-counter;
}

.steps-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background-color: #5FA8D3;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 12px 0;
  color: #2C3E50;
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 20px;
}

.resource-card h3 {
  color: #1B4965;
  margin-bottom: 12px;
}

.resource-card p {
  color: #6B7280;
  margin-bottom: 20px;
}

.nav-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8E8E8;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.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 1 400px;
  color: #2C3E50;
  font-size: 14px;
}

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

.cookie-banner button {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #1B4965;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #5FA8D3;
}

.cookie-reject {
  background-color: #E8E8E8;
  color: #2C3E50;
}

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

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

.cookie-settings:hover {
  background-color: #1B4965;
  color: #FFFFFF;
}

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

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

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

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FAFAFA;
  border-radius: 8px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  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: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .benefit {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .contact-method {
    flex: 1 1 100%;
  }
  
  .value {
    flex: 1 1 100%;
  }
  
  .expertise-item {
    flex: 1 1 100%;
  }
  
  .metric {
    flex: 1 1 100%;
  }
  
  .resource-card {
    flex: 1 1 100%;
  }
  
  .category-list li {
    flex: 1 1 100%;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 30px 16px;
  }
  
  .btn {
    width: 100%;
  }
  
  .service-card,
  .benefit,
  .testimonial-card,
  .contact-method {
    padding: 24px;
  }
  
  .metric .number {
    font-size: 36px;
  }
}