/* RESET & BASE NORMALIZE */
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, 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { min-height: 100vh; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #E5EEE3;
  background: #181e1b;
  line-height: 1.7;
  background-color: #131e17;
  /* subtle diagonal lines for tech feel */
  background-image: repeating-linear-gradient(135deg, rgba(41,81,66,0.025) 0 15px, transparent 15px 30px),
    linear-gradient(110deg,#295142 0%,#181e1b 100%);
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

:root {
  --color-primary: #295142;
  --color-secondary: #8B704B;
  --color-accent: #E5EEE3;
  --color-dark: #181e1b;
  --color-deep: #131e1b;
  --color-grey: #212d26;
  --color-neon: #37ffab;
  --radius-base: 18px;
  --shadow-card: 0 3px 24px 0 rgba(41,81,66,0.12),0 1.5px 5px 0 #020f08;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

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

.content-wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
h1 { font-size: 2.4rem; margin-top: 16px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; font-weight: 600; }

p, li, span, small, a {
  font-family: var(--font-body);
  color: #d7efe2;
  font-size: 16px;
  line-height: 1.75;
}
a {
  color: var(--color-neon);
  text-decoration: none;
  transition: color 0.18s;
}
a:focus, a:hover {
  color: #99ffe1;
  outline: none;
}

strong, b {
  color: var(--color-neon);
  font-weight: 700;
}
small {
  font-size: 14px;
  color: #a2c9b0;
}

ul, ol {
  padding-left: 28px;
  margin-bottom: 28px;
}
ul li, ol li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* SECTIONS & LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(33,45,38,0.89);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.card {
  background: #232b25;
  margin-bottom: 20px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 30px 24px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 380px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 0 0 3px var(--color-neon);
  transform: translateY(-4px) scale(1.025);
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fdfdfd;
  color: #102513;
  border-radius: var(--radius-base);
  box-shadow: 0 1.5px 12px 0 rgba(41,81,66,0.13);
  margin-bottom: 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px 1px #8ff7cf44, 0 3.5px 25px 1px #29514233;
  transform: scale(1.012);
}
.testimonial-card p {
  flex:1;
  color: #18422b;
  font-size: 15px;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-weight: 500;
  color: #2c8360;
  font-size: 0.99em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* BUTTONS */
.cta-btn, .cta-btn.mini {
  background: linear-gradient(90deg, #51dc95 0%, #1edbdc 100%);
  color: #102513;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1.13rem;
  margin-top: 22px;
  margin-bottom: 16px;
  box-shadow: 0 1px 15px 0 #37ffab38, 0 3px 10px 0 #112b2180;
  cursor: pointer;
  text-shadow: 0 0 2px #fff;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.16s;
  outline: none;
  display: inline-block;
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(90deg, #1edbdc 0%, #51dc95 100%);
  color: #181e1b;
  box-shadow: 0 2px 35px 3px #37ffab60, 0 5px 28px #1edbdc44;
  transform: translateY(-2px) scale(1.03);
}
.cta-btn.mini {
  padding: 9px 22px;
  font-size: 0.98rem;
  margin: 0 10px 0 0;
}

/* HEADER & NAVIGATION */
header {
  background: #151f1a;
  box-shadow: 0 2px 14px 0 #050c07;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 500;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
header a img {
  max-width: 168px;
  height: auto;
  transition: filter 0.2s;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
nav a {
  color: #d9f8ea;
  font-family: var(--font-display);
  font-size: 15px;
  position: relative;
  padding: 8px 13px;
  border-radius: 33px;
  transition: background 0.17s, color 0.16s;
}
nav a:focus, nav a:hover {
  background: #37ffab;
  color: #131e1b;
}
nav a.cta-btn {
  background: linear-gradient(90deg, #1edbdc 0%, #65efb4 100%);
  color: #16271b;
  font-size: 1.07em;
  box-shadow: 0 0 12px 0 #1edbdc44;
  margin-left: 8px;
}
nav a.cta-btn:hover {
  background: linear-gradient(90deg, #65efb4 0%, #1edbdc 100%);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.95rem;
  color: #1edbdc;
  cursor: pointer;
  margin-left: 14px;
  z-index: 1202;
  width: 44px;
  height: 44px;
  transition: color 0.14s;
  border-radius: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--color-neon);
  background: #112b2160;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1300;
  background: #12251cee;
  backdrop-filter: blur(4px);
  transform: translateX(102vw);
  transition: transform 0.39s cubic-bezier(.75,0,.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  right: 26px;
  top: 22px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  cursor: pointer;
  z-index: 1320;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #18422b;
  color: #51ff9f;
}
.mobile-nav {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100vw;
}
.mobile-nav a {
  color: #d7efe2;
  font-family: var(--font-display);
  font-size: 1.28rem;
  padding: 16px 52px;
  border-radius: 44px;
  background: none;
  transition: color 0.18s, background 0.13s;
  margin: 0 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-primary);
  color: #fff;
}
.mobile-nav a.cta-btn {
  background: linear-gradient(90deg, #51dc95 0%, #1edbdc 100%);
  color: #131e1b;
  font-size: 1.15rem;
  margin-top: 5px;
  padding: 18px 60px;
  box-shadow: 0 1px 14px 0 #37ffab52;
}
.mobile-nav a.cta-btn:hover {
  background: linear-gradient(90deg, #1edbdc 0%, #51dc95 100%);
  color: #061911;
}

/* RESPONSIVE NAV */
@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 993px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  nav {
    display: flex;
  }
}

/* SECTION/LAYOUTS - FLEX ONLY! */
div[class^="content-"] > .card-container, .card-container,
.content-grid, .section .content-grid, .features,
.content-wrapper > .testimonial-card, .testimonial-wrapper,
.text-image-section, .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1024px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .container { padding: 0 5vw; }
  .section { padding: 22px 7vw; margin-bottom: 32px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .text-image-section { flex-direction: column; justify-content: flex-start; gap: 18px; }
  .card, .testimonial-card { max-width: 100vw; min-width: 0; }
  .card-container, .content-grid, .testimonial-wrapper, ul { flex-direction: column; gap: 16px; }
}

/* CARDS & POST LIST */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.post-list article {
  background: #252c25;
  border-radius: var(--radius-base);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.post-list article:hover {
  box-shadow: 0 0 0 2px #1edbdc;
  transform: scale(1.012);
}
.post-list h3 {
  color: var(--color-neon);
  margin-bottom: 10px;
}

/* CONTACT INFO */
.contact-info {
  margin-top: 18px;
  margin-bottom: 18px;
  background: #273129;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 #1edbdc25;
  padding: 21px 24px;
  color: #d7efe2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d7efe2;
}
.contact-info img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 0.88;
}

/* FOOTER */
footer {
  background: #131e17;
  padding: 34px 0 12px;
  border-top: 2.5px solid #1edbdc44;
  box-shadow: 0 -2px 22px #12251c99;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #bffae2;
  font-size: 15px;
}
footer .contact-info {
  background: none;
  box-shadow: none;
  padding: 0;
  max-width: 420px;
  margin-bottom: 14px;
  color: #d7efe2;
}
footer .contact-info p {
  color: #d7efe2;
}
.brand-tagline {
  font-family: var(--font-display);
  color: #1edbdc;
  font-size: 1.06em;
  opacity: 0.93;
  margin-top: 14px;
  text-align: center;
  letter-spacing: 1.2px;
}

/* ICONS */
img[alt^="Ikona"], img[src*="icon-"], img[alt="Facebook"], img[alt="Instagram"] {
  width: 28px; height: 28px; vertical-align: middle; display: inline-block; margin-right: 3px; filter: drop-shadow(0 0 1px #1edbdc30);
}
.social-icons a {
  margin-right: 14px;
  display: inline-block;
  transition: transform 0.12s;
}
.social-icons a:hover img {
  filter: drop-shadow(0 0 8px #1edbdc);
  transform: scale(1.22);
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1e2823;
  color: #e8fbe8;
  padding: 23px 7vw 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1700;
  box-shadow: 0 -2px 20px 0 #1edbdc30;
  font-size: 15px;
  border-top: 3px solid #295142;
  transition: transform 0.25s cubic-bezier(.59,1.7,.2,1), opacity 0.12s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 16px;
}
.cookie-banner button {
  background: #37ffab;
  color: #132718;
  border: none;
  font-family: var(--font-display);
  padding: 8px 25px;
  margin-left: 5px;
  border-radius: 44px;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 0 12px 0 #8affc533;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
  outline: none;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: linear-gradient(-90deg, #1edbdc 0%, #37ffab 100%);
  color: #131e1b;
}
.cookie-banner .cookie-settings-btn {
  background: #8B704B;
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #b89258;
  color: #161e14;
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-52%) scale(1);
  min-width: 315px;
  max-width: 97vw;
  width: 420px;
  background: #202c23;
  color: #cbeedf;
  border-radius: 18px;
  box-shadow: 0 18px 105px 0 #1edbdc31, 0 2px 18px #1edbdc;
  z-index: 1800;
  padding: 34px 32px 28px 32px;
  transition: opacity 0.18s, transform 0.22s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-52%) scale(0.95);
}
.cookie-modal h2 {
  font-size: 1.34rem;
  margin-bottom: 11px;
  color: #37ffab;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-family: var(--font-body);
  color: #e2f0d8;
  font-size: 1.04em;
  user-select: none;
  cursor: pointer;
}
.cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #173721;
  border-radius: 16px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #1edbdc;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: .24s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 8px 22px;
  border-radius: 44px;
  background: #37ffab;
  color: #131e1b;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1.5px 22px #1edbdc22;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal button:focus, .cookie-modal button:hover {
  background: #1edbdc;
  color: #181e1b;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4vw 14px 3vw;
    gap: 12px;
  }
  .cookie-modal {
    width: 92vw;
    padding: 24px 9vw 16px 9vw;
    min-width: 0;
    max-width: 98vw;
  }
}

/* ADDITIONAL SPACING RULES */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 22px !important;
}
@media (max-width: 768px) {
  .section:not(:last-child) { margin-bottom: 32px; }
  .card:not(:last-child), .testimonial-card:not(:last-child) { margin-bottom: 15px; }
  .content-wrapper > *:not(:last-child) { margin-bottom: 14px !important; }
}

/* TABLES (if any) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #252c25;
  color: #d7efe2;
  margin-bottom: 20px;
  border-radius: 9px;
  overflow: hidden;
}
th, td {
  padding: 14px 18px;
}
th {
  background: #1edbdc;
  color: #181e1b;
  font-family: var(--font-display);
  text-align: left;
}

/* FORM ELEMENTS */
input, textarea, select {
  background: #1e2823;
  color: #fafdf9;
  border: 1.5px solid #1edbdc80;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  margin-top: 5px;
  box-shadow: 0 0 8px 0 #1edbdc18;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #37ffab;
  box-shadow: 0 0 17px #1edbdc13;
  outline: none;
}

button {
  cursor: pointer;
  background: #295142;
  color: #fff;
  border: none;
  border-radius: 44px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 28px;
  margin: 8px 0;
  transition: background 0.16s, color 0.14s, box-shadow 0.18s;
  box-shadow: 0 2px 13px 0 #1edbdc28;
}
button:focus, button:hover {
  background: #1edbdc;
  color: #131e1b;
}

/* ADDRESS MAP (contact page) */
.address-map {
  background: #263728;
  color: #b8e9cb;
  border-radius: 14px;
  padding: 17px 19px;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 18px #1edbdc12;
}
.address-map strong { color: #51dc95; }

/* UTILITY CLASSES */
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.mt-2 { margin-top: 2px; }
.mt-10 { margin-top: 10px; }

/* SCROLLBAR STYLES */
::-webkit-scrollbar { width: 7px; background: #19231d; }
::-webkit-scrollbar-thumb { background: #29514255; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #1edbdc88; }

/* HIGHLIGHT SLIGHT NEON GLOW ON CARD/HL ELEMENTS */
.card, .testimonial-card, .post-list article {
  border: 1.5px solid #1edbdc22;
}
.card:after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border 0.13s, filter 0.15s;
}
.card:hover:after {
  border-color: #51ffab;
  filter: blur(1.5px) brightness(1.1);
}

/* NEON ANIMATION FOR CTA BTN */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 8px #51ffab77, 0 1px 16px #1edbdc44; }
  50% { box-shadow: 0 0 16px #1edbdc, 0 0 36px #51ffab88; }
}
.cta-btn {
  animation: neonPulse 2.6s infinite alternate;
}

/* MODERN FONT LOAD */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* MAKE SURE NO OVERLAP & FLEX WRAP ON ALL CARDS */
.card-container, .post-list, .testimonial-wrapper {
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .card-container, .post-list, .testimonial-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

/* BRAND/TECH FUTURISTIC EFFECTS */
h1, h2 {
  text-shadow:
    0 1px 10px #10251370,
    0 0 2px #1edbdc60;
  background: linear-gradient(90deg, #51dc95 0%, #1edbdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          color: transparent;
}

/* MODERN LIST BULLET ICONS */
ul li img {
  width: 24px; height: 24px; margin-right: 6px; filter: drop-shadow(0 0 2px #51dc9577);
}

/* VISUAL HIERARCHY: Heading spacing */
h1 + p, h2 + ul, h2 + p, h3 + ul, h2 + .card-container, h2 + .post-list {
  margin-top: 10px !important;
}

/* NEWSLETTER BUTTON */
.content-wrapper a.cta-btn + a img {
  margin-left: 14px;
  transition: filter 0.182s, transform 0.13s;
}
.content-wrapper a.cta-btn + a:hover img {
  filter: drop-shadow(0 0 11px #1edbdc99);
  transform: scale(1.15);
}

/* HIDE/SHOW UTILITY FOR BANNER & MENU */
.hide { display: none !important; }
.visible { display: block !important; }

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .section, .card, .testimonial-card, .card-container, .post-list article, .cta-btn {
    transition: box-shadow 0.18s, background 0.18s, transform 0.17s;
  }
}

/* FOCUS VISIBLE FOR ALL INTERACTIVE */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #1edbdc;
  outline-offset: 2px;
  z-index: 1;
}

/* PRINT STYLES (BASIC) */
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #222; }
  .section, .card, .testimonial-card { box-shadow: none; background: #fff; color: #222; }
}
