@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --terracotta: #c45c3e;
  --terracotta-light: #e07a5f;
  --terracotta-dark: #a34a2d;
  --cream: #faf8f5;
  --warm-white: #fffbf7;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #6b6b6b;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

button, .btn {
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}


h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  font-size: 1.05rem;
}


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

.container-narrow {
  max-width: 960px;
}

.container-wide {
  max-width: 1440px;
}


.section {
  padding: clamp(60px, 8vw, 120px) 0;
}


.bg-gradient-charcoal-terracotta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 50%, var(--terracotta) 100%);
}

.bg-gradient-warm {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.bg-gradient-reverse {
  background: linear-gradient(180deg, var(--terracotta) 0%, var(--charcoal) 100%);
}

.bg-charcoal {
  background-color: var(--charcoal);
}

.bg-terracotta {
  background-color: var(--terracotta);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-warm-white {
  background-color: var(--warm-white);
}


.text-charcoal {
  color: var(--charcoal);
}

.text-terracotta {
  color: var(--terracotta);
}

.text-cream {
  color: var(--cream);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
}


.geometric-accent {
  position: relative;
}

.geometric-accent::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.geometric-accent-right::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--charcoal) 100%);
  opacity: 0.08;
  border-radius: 50%;
  right: -100px;
  bottom: -100px;
  z-index: 0;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(196, 92, 62, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 92, 62, 0.4);
  color: var(--text-light);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--text-light);
  border-radius: 12px;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--charcoal);
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--charcoal);
  border-radius: 12px;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-dark:hover {
  background: var(--charcoal);
  color: var(--text-light);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-light);
}


.service-card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: 20px;
}

.service-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}


.testimonial-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--terracotta);
}

.testimonial-stars {
  color: #f5c518;
  font-size: 18px;
  margin-bottom: 16px;
}


.team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--warm-white);
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
  color: var(--text-light);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.team-role {
  font-size: 0.95rem;
  opacity: 0.8;
}


.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  background: var(--warm-white);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(196, 92, 62, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}

.header.scrolled .logo {
  color: var(--charcoal);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 8px 0;
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--cream);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header.scrolled .mobile-toggle span {
  background: var(--charcoal);
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-nav-link {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text-light);
  padding: 20px 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--terracotta);
}

.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(196, 92, 62, 0.4) 100%);
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
}


.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}


.footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 350px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--terracotta);
}


.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: var(--charcoal);
  border-radius: 20px;
  padding: 32px;
  z-index: 9999;
  box-shadow: var(--shadow-strong);
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.cookie-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--terracotta);
  color: var(--text-light);
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--terracotta-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}


.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: height 0.3s ease;
}

.faq-item.active .faq-icon::after {
  height: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 0 24px;
  color: var(--text-muted);
}


.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  width: 100%;
}

.gallery-before,
.gallery-after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gallery-before img,
.gallery-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-after {
  width: 50%;
  overflow: hidden;
}

.gallery-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--text-light);
  cursor: ew-resize;
  z-index: 10;
}

.gallery-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 18px;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-label-before {
  left: 16px;
}

.gallery-label-after {
  right: 16px;
}


.process-step {
  position: relative;
  padding-left: 40px;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--terracotta);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.process-step:nth-child(1)::before { counter-reset: step 0; }
.process-step:nth-child(1)::before { counter-increment: step; }
.process-step:nth-child(2)::before { counter-increment: step; }
.process-step:nth-child(3)::before { counter-increment: step; }
.process-step:nth-child(4)::before { counter-increment: step; }
.process-step:nth-child(5)::before { counter-increment: step; }
.process-step:nth-child(6)::before { counter-increment: step; }


.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  background: var(--warm-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }


.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }


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


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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}


@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .service-card {
    padding: 30px;
  }
  
  .glass-card {
    padding: 30px;
  }
  
  .section {
    padding: 60px 0;
  }
}


strong, p, span, li, div {
  color: inherit;
}


*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--charcoal);
  color: var(--text-light);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}


a[href*="://"]::after {
  content: "↗";
  font-size: 0.7em;
  margin-left: 4px;
}


@media print {
  .header,
  .footer,
  .cookie-banner,
  .mobile-menu {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 18pt;
  }
}