/* CSS RESET & BASE NORMALIZATION */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F9FAFB;
  color: #24374B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; border-radius: 10px; }
a { color: #26A69A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #16324F; }
strong { font-weight: bold; }
::-webkit-input-placeholder { color: #b0bec5; }
::-moz-placeholder { color: #b0bec5; }
:-ms-input-placeholder { color: #b0bec5; }
::placeholder { color: #b0bec5; }

/* BRAND COLORS & TYPOGRAPHY */
:root {
  --color-primary: #16324F;
  --color-secondary: #26A69A;
  --color-accent: #F4F7FA;
  --color-warn: #EC8A5E;
  --color-text: #24374B;
  --color-bg: #F9FAFB;
  --color-info: #FFEBE0;
  --color-button-hover: #195871;
  --color-shadow: rgba(30,55,90,0.07);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.375rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size:1rem; }

@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

p, ul, ol, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
p { margin-bottom: 14px; }
ul, ol { margin-left: 20px; margin-bottom: 14px; }

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

.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 24px -10px var(--color-shadow);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  z-index: 99;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 24px;
}
header img { height: 52px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: 25px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.main-nav .nav-cta {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 22px;
  margin-left: 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s;
}
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus {
  background: var(--color-primary);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 12px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px var(--color-shadow);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  outline: none;
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container { gap: 8px; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,50,79,0.935);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.55,.05,.6,.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 20px 24px 0 0;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  width: 100%;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  padding: 16px 0 8px 0;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: #fff1;
  padding-left: 16px;
}
@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(88deg,#FFE7DC 0%,#F4F7FA 100%);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  padding: 56px 0 40px 0;
  margin-bottom: 40px;  
}
.hero .container { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  padding: 0;
  max-width: 720px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  color: #385168;
  margin-bottom: 22px;
}

/* CTA BUTTON + LINKS */
.cta-button {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  border-radius: 26px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 12px 36px;
  cursor: pointer;
  border: none;
  box-shadow: 0 3px 16px var(--color-shadow);
  transition: background 0.2s, transform 0.18s;
  margin-top: 18px;
  letter-spacing: 0.02em;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-link {
  display: inline-block;
  font-weight: 600;
  color: var(--color-secondary);
  font-family: var(--font-display);
  border-bottom: 2px solid var(--color-secondary);
  transition: border 0.16s, color 0.18s;
  margin: 22px 0 0 0;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* SECTION GENERAL SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
}
.confirmation {
  margin-bottom: 48px;
  padding: 52px 24px;
  background: var(--color-accent);
  border-radius: 22px;
}

@media (max-width: 900px) {
  section, .confirmation {
    margin-bottom: 38px;
    padding: 32px 10px;
  }
}

/* FLEX LAYOUTS - CARDS, GRIDS, SECTIONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px var(--color-shadow);
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img {
  height: 46px;
  width: auto;
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.16rem;
  color: var(--color-secondary);
  margin-bottom: 3px;
}

.service-list, .service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > div, .service-block {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px;
  margin-bottom: 20px;
  min-width: 215px;
  box-shadow: 0 2px 12px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-list > div:hover, .service-block:hover {
  box-shadow: 0 6px 28px var(--color-shadow);
  transform: translateY(-4px) scale(1.018);
}
.service-list .cta-link { align-self: flex-end; }

.service-block h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-block h3 img {
  height: 28px;
  width: 28px;
  border-radius: 7px;
}
.service-price {
  background: var(--color-info);
  color: var(--color-primary);
  padding: 5px 13px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 18px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 5px 18px var(--color-shadow);
  transform: translateY(-3px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .service-list, .service-detailed-list,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .service-list > div, .service-block,
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
  }
}

/* TESTIMONIALS & CASE STUDIES */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px var(--color-shadow), 0 0px 0px #fff;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  border-left: 7px solid var(--color-secondary);
  transition: box-shadow 0.17s, border-left-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px var(--color-shadow);
  border-left-color: var(--color-primary);
}
.testimonial-card p {
  color: #2B3550;
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.case-study-text {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study-text h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
}

/* BLOG LIST/CATEGORIES */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 20px 17px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s;
}
.blog-item:hover { box-shadow: 0 5px 14px var(--color-shadow); }
.blog-date {
  font-size: 0.92rem;
  color: var(--color-secondary);
  margin-bottom: 3px;
}
.blog-categories h3 { font-size: 1.15rem; margin-bottom: 8px; color:var(--color-primary); }
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
}
.blog-categories li {
  background: var(--color-accent);
  color: var(--color-secondary);
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 7px 14px;
}

/* CONTACT DETAILS */
.contact-details ul {
  list-style: none;
  margin: 0 0 14px 0;
  padding-left: 0;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #24374B;
}

/* FOOTER  */
footer {
  background: linear-gradient(90deg,#16324F 0%, #1e4668 100%);
  color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 80px;
  padding: 36px 0 26px 0;
  box-shadow: 0 -2px 18px var(--color-shadow);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.footer-nav, .footer-contact, .social-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.footer-nav a, .footer-contact a {
  color: #fff;
  opacity: 1;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: opacity 0.17s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
}
.footer-contact span {
  color: #f4f7fa;
  font-size: 0.98rem;
}
.social-links a {
  background: var(--color-secondary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  margin-top: 2px;
}
.social-links a:hover { background: #fff; }
.social-links a img { width: 22px; height: 22px; border-radius: 50%; }

@media (max-width: 600px) {
  .footer-nav, .footer-contact, .social-links {
    gap: 12px;
    font-size: 0.96rem;
    flex-direction: column;
    align-items: center;
  }
  footer .container {gap:15px;}
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 24px;
  background: #FFF9F4;
  border-radius: 22px;
  box-shadow: 0 7px 22px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 40000;
  padding: 26px 28px;
  gap: 22px;
  font-family: var(--font-body);
  font-size: 1.04rem;
  max-width: 410px;
  margin: 0 auto;
  animation: cookie-fade-in 0.6s cubic-bezier(.4,.68,.55,1) forwards;
}
@keyframes cookie-fade-in {
  0% { opacity:0; transform: translateY(30px); }
  100% { opacity:1; transform:translateY(0); }
}
.cookie-button-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-banner button {
  border: none;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 19px;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, box-shadow 0.16s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 2px 7px var(--color-shadow);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .reject {
  background: #fff3e3;
  color: var(--color-warn);
  border: 1px solid var(--color-warn);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-warn);
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-banner { right:3px; left:3px; padding:14px 7px; font-size: 0.97rem; }
  .cookie-button-row { gap: 8px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,55,75,0.78);
  z-index: 100000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: cookie-darken 0.3s;
}
@keyframes cookie-darken {
  0% { background: rgba(36,55,75,0); }
  100% { background: rgba(36,55,75,0.78); }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 1px 22px var(--color-shadow);
  max-width: 410px;
  width: 100%;
  margin-bottom: 0;
  padding: 38px 31px 28px 31px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-slide-in 0.4s cubic-bezier(.41,.88,.41,1.41) forwards;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #edecee;
}
.cookie-modal-category:last-child { border-bottom: none; }
.cookie-modal-label {
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--color-secondary);
}
.cookie-modal-toggle {
  pointer-events: initial;
  width: 42px;
  height: 24px;
  background: #e4f1ef;
  border-radius: 14px;
  position: relative;
  margin-left: 1rem;
  transition: background 0.15s;
  border: none;
  appearance: none;
}
.cookie-modal-toggle[aria-checked="true"] {
  background: var(--color-secondary);
}
.cookie-modal-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s, background 0.13s;
}
.cookie-modal-toggle[aria-checked="true"]::before {
  left: 21px;
  background: #fff;
}
.cookie-modal-always {
  color: #555;
  font-size: 0.93rem;
  font-family: var(--font-body);
  background: #e0e3e4;
  border-radius: 11px;
  padding: 3px 9px;
  margin-left: 12px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  justify-content: flex-end;
}
.cookie-modal .accept, .cookie-modal .reject, .cookie-modal .settings {
  min-width: 94px;
}
@media (max-width: 500px) {
  .cookie-modal-content { padding: 22px 5px 17px 5px; min-width: 0; }
}

/* GENERAL LISTS */
ul, ol {
  margin-bottom: 15px;
  padding-left: 24px;
}
ul li {
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  padding-left: 25px;
  margin-top: 4px;
}
.text-section li {
  color: #385168;
}

/* ACCESSIBILITY: FOCUS VISIBILITY */
a:focus, button:focus, .cta-button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-banner button:focus, .cookie-modal button:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 1px;
}

/* TABLES (for legal, privacy pages) */
table { border-collapse: collapse; background: #fff;
  border-radius:12px;
  box-shadow:0 1px 6px var(--color-shadow);
  margin:18px 0;
}
th, td { padding:13px 18px; border-bottom:1px solid #f0f3f9; }
th { background: var(--color-accent); font-weight:700; }

/* MEDIA QUERIES FOR RESPONSIVE LAYOUT */
@media (max-width: 900px) {
  .content-wrapper, .case-study-list, .testimonial-list, .feature-grid, .service-list, .card-container, .blog-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    max-width: 100%;
  }
  .hero { border-radius: 18px; padding:32px 0 20px 0; }
  section { border-radius: 12px; }
}
@media (max-width: 600px) {
  section { padding: 18px 3px; }
  .content-wrapper { padding:0; }
  .hero .content-wrapper { padding:0; }
}

/* MICRO-INTERACTIONS: SHADOWS, TRANSITIONS */
.card, .feature-grid > div, .testimonial-card, .case-study-text, .blog-item, .service-block {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active, .service-block:active, .case-study-text:active {
  box-shadow: 0 1px 2px var(--color-shadow);
  transform: scale(0.98);
}
button, .cta-button, .cookie-modal-toggle, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.14s;
}

/* FORMS BASICS (if used) */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #d6dadf;
  padding: 10px 14px;
  outline: none;
  transition: border 0.14s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0 0 0 2px #e1f9fa;
}

/* MISCELLANEOUS */
::-webkit-scrollbar { width: 9px; background: var(--color-accent); }
::-webkit-scrollbar-thumb { background: #d7e7ee; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b9d7e7; }

/* REMOVE DEFAULT BUTTON APPEARANCE */
button, .cta-button {
  border: none;
  outline: none;
  box-shadow: none;
}

/* PRINT (legal pages) */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, main { background: #fff !important; color: #000; }
}
