/* --- CSS RESET & 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #20283E;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
main, section, article, aside, header, nav, footer {
  display: block;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

/* --- CSS VARIABLES FOR BRAND COLORS --- */
:root {
  --fw-primary: #1B263B;
  --fw-secondary: #415A77;
  --fw-accent: #F4D35E;
  --fw-art-blue: #244B85;
  --fw-art-coral: #F16A6F;
  --fw-art-mint: #00B8A9;
  --fw-art-gray: #F6F8F9;
  --fw-card-bg: #fff;
  --fw-shadow: 0 6px 28px -8px rgba(65,90,119,0.13);
  --fw-radius: 18px;
  --fw-card-border: 2.5px solid var(--fw-accent);
  --fw-text-dark: #1B263B;
  --fw-text-light: #fff;
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--fw-primary);
  letter-spacing: .01em;
  text-rendering: geometricPrecision;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 22px;
  color: var(--fw-art-blue);
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: .02em;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--fw-art-coral);
  font-weight: 700;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--fw-secondary);
}
strong {
  font-weight: bold;
  color: var(--fw-primary);
}

/* ARTISTIC TEXT EFFECTS for HERO HEADINGS */
.hero h1 {
  font-size: 2.6rem;
  color: var(--fw-accent);
  background: linear-gradient(95deg, var(--fw-accent) 10%, var(--fw-art-coral) 55%, var(--fw-art-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 1.5px 2.5px 0px var(--fw-art-blue), 0 2px 26px var(--fw-art-mint, #00B8A9);
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  color: var(--fw-text-dark);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--fw-primary);
  padding: 0;
  position: relative;
  z-index: 50;
  box-shadow: 0 1px 12px 0 rgba(27,38,59,0.09);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 16px 24px;
}
.logo {
  min-width: 120px;
  margin-right: 14px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  flex-grow: 1;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fw-accent);
  letter-spacing: .03em;
  border-radius: 6px;
  padding: 8px 14px;
  transition: background .2s, color .2s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--fw-art-coral);
  background: var(--fw-art-gray);
}
.cta.primary {
  background: var(--fw-art-coral);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  margin-left: 12px;
  letter-spacing: .01em;
  box-shadow: 0 2px 16px -4px rgba(241,106,111,0.25);
  transition: background .18s, transform .12s;
  position: relative;
  z-index: 2;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--fw-primary);
  color: var(--fw-accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 22px -8px var(--fw-art-coral);
}
button.mobile-menu-toggle {
  background: var(--fw-art-mint);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border: 0;
  margin-left: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  z-index: 52;
}
button.mobile-menu-toggle:hover, button.mobile-menu-toggle:focus {
  background: var(--fw-art-coral);
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(27,38,59,0.96);
  z-index: 100;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transition: transform .38s cubic-bezier(.75,.02,.31,.91);
  transform: translateX(100%);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 26px 0 0;
  background: var(--fw-art-coral);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  box-shadow: 0 8px 22px -8px var(--fw-accent);
  z-index: 111;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--fw-art-mint);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 40px 0 0 36px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 12px 0;
  border-radius: 8px;
  min-width: 220px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--fw-art-coral);
  background: rgba(241, 106, 111, 0.07);
}

/* --- HERO SECTIONS --- */
.hero {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--fw-gray, var(--fw-art-gray));
  padding: 64px 0 36px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 12px;
  right: -20px;
  width: 190px;
  height: 90px;
  background: var(--fw-art-mint);
  opacity: 0.1;
  border-radius: 80px;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero .content-wrapper {
  max-width: 750px;
  gap: 12px;
}

/* --- FLEXBOX PATTERNS (MANDATORY LAYOUTS) --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
  justify-content: space-between;
}
.feature {
  background: var(--fw-card-bg);
  border-radius: var(--fw-radius);
  box-shadow: var(--fw-shadow);
  border: var(--fw-card-border);
  min-width: 230px;
  flex: 1 1 240px;
  padding: 26px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .17s, transform .18s;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 3px rgba(33,40,62,.07));
}
.feature:hover, .feature:focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px -8px var(--fw-art-mint);
  border-color: var(--fw-art-coral);
}

.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--fw-card-bg);
  border-radius: var(--fw-radius);
  box-shadow: var(--fw-shadow);
  padding: 28px 22px;
  position: relative;  
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- SERVICES & LISTS --- */
.services-list li, .why-choose-us-list li, .products-overview li, .pricing-list li, .training-topics-list li {
  margin-bottom: 18px;
  padding-left: 24px;
  position: relative;
  font-size: 1.08rem;
  line-height: 1.48;
}
.services-list li::before, .why-choose-us-list li::before, .training-topics-list li::before {
  content: '\2022';
  color: var(--fw-accent);
  font-size: 1.4em;
  position: absolute;
  left: 0;
  top: 0.05em;
}

.services-list a.cta {
  margin-left: 14px;
  background: var(--fw-art-mint);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 6px 18px;
  transition: background .17s, color .17s;
  font-size: .98rem;
}
.services-list a.cta:hover, .services-list a.cta:focus {
  background: var(--fw-art-coral);
  color: #fff;
}

/* --- PRICING TABLES --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-radius: var(--fw-radius);
  margin: 20px 0 26px 0;
  overflow: hidden;
  background: var(--fw-card-bg);
  box-shadow: var(--fw-shadow);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 13px 16px;
  text-align: left;
}
.pricing-table th {
  background: var(--fw-art-mint);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: var(--fw-art-gray);
}
.pricing-table tr:nth-child(odd) td {
  background: #fff;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: var(--fw-primary);
  border-radius: var(--fw-radius);
  box-shadow: 0 5px 32px -6px rgba(65,90,119,0.14);
  min-width: 270px;
  max-width: 380px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  border-left: 6px solid var(--fw-art-coral);
  font-style: italic;
}
.testimonial-card p {
  color: var(--fw-primary);
  margin-bottom: 8px;
  font-size: 1.04rem;
}
.testimonial-meta {
  text-align: right;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  color: var(--fw-secondary);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .01em;
}

/* --- FOOTER --- */
footer {
  background: var(--fw-primary);
  color: #fff;
  padding-top: 36px;
  padding-bottom: 12px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
}
.footer-columns > div {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-columns img {
  width: 54px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}
.footer-nav a {
  color: var(--fw-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: .01em;
  transition: color .15s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--fw-art-mint);
}
.footer-contact {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.footer-contact img {
  width: 18px;
  display: inline;
  vertical-align: text-top;
  margin-right: 6px;
  margin-bottom: -2px;
}
footer p {
  color: #fff;
  opacity: 0.95;
  margin-bottom: 6px;
}

/* --- CONTACT INFO BRIEF --- */
.contact-info-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 1rem;
  align-items: flex-start;
}
.contact-info-brief div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: var(--fw-primary);
}
.contact-info-brief img {
  width: 22px;
}
.mini-contact-cta {
  margin-top: 18px;
}
.cta.secondary {
  background: var(--fw-art-mint);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-left: 4px;
  transition: background .16s, color .16s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--fw-art-coral);
  color: #fff;
}

/* --- TABLES, FACTS, HIGHLIGHTS, MAPS --- */
.statistics-highlights ul, .quick-facts ul, .team-expertise-highlights ul, .availability-highlights p, .shipping-info p {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.09rem;
  margin: 16px 0 8px 0;
}
.statistics-highlights li, .quick-facts li, .team-expertise-highlights li {
  background: var(--fw-art-coral);
  color: #fff;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2.5px 10px -5px var(--fw-art-mint);
  margin-bottom: 0 !important;
  line-height: 1.35;
}
.availability-highlights p, .shipping-info p {
  background: var(--fw-art-mint);
  color: #fff;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.35;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 12px;
  font-weight: 500;
  font-size: 1.06rem;
  color: var(--fw-secondary);
}
.location-map img {
  width: 28px;
}

/* --- ARTISTIC UNIQUE ELEMENTS --- */
.feature, .testimonial-card, .card {
  border-radius: var(--fw-radius) var(--fw-radius) 40px 10px;
  background: linear-gradient(129deg, #fff 70%, var(--fw-art-gray) 100%);
  box-shadow: var(--fw-shadow);
  border-width: 2.5px;
}
.feature::before, .testimonial-card::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--fw-art-mint);
  border-radius: 40% 60% 30% 70%;
  opacity: 0.12;
  z-index: 1;
  filter: blur(1.5px);
}

/* --- SPACING AND SECTION GAPS --- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.content-wrapper.text-section {
  gap: 18px;
  margin-bottom: 0;
}

/* --- BUTTONS --- */
.cta {
  display: inline-block;
  border-radius: 30px;
  background: var(--fw-art-mint);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .01em;
  border: none;
  padding: 10px 28px;
  box-shadow: 0 1.5px 14px -3px var(--fw-art-mint, rgba(0,184,169,0.25));
  transition: background .17s, color .17s, transform .13s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: var(--fw-art-coral);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.feature, .card, .testimonial-card, .cta, .main-nav a, .footer-nav a, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
  transition: box-shadow .18s, background .19s, color .14s, transform .15s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--fw-art-mint);
  color: #fff;
  padding: 22px 24px 16px 24px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 -3px 18px -6px var(--fw-art-coral);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieSlideIn .55s cubic-bezier(.72,0,.26,1) 1;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity:0; }
  80% { transform: translateY(-10%); opacity:1; }
  100% { transform:translateY(0); opacity:1; }
}
.cookie-banner-content {
  flex: 1 1 320px;
  margin-right: 18px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  outline: none;
  transition: background .18s, color .16s;
  cursor: pointer;
}
.cookie-accept {
  background: #fff;
  color: var(--fw-art-mint);
  margin-right: 6px;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--fw-art-coral);
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: var(--fw-art-coral);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--fw-primary);
  color: #fff;
}
.cookie-settings {
  background: var(--fw-accent);
  color: var(--fw-primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--fw-art-mint);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,38,59,.42);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalBackdropFade .2s;
}
@keyframes modalBackdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--fw-primary);
  min-width: 340px;
  max-width: 99vw;
  border-radius: 18px;
  box-shadow: 0 12px 64px -8px var(--fw-primary);
  padding: 36px 30px 26px 30px;
  z-index: 3400;
  animation: modalPopIn .33s cubic-bezier(.62,-0.12,.18,1.6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalPopIn {
  0% { opacity:0; transform: scale(0.92) translateY(50px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--fw-art-coral);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  z-index: 999;
  transition: background .19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--fw-art-mint);
}
.cookie-modal h2 {
  font-size: 1.14rem;
  color: var(--fw-art-blue);
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--fw-art-mint);
  width: 19px; height: 19px;
  margin-right: 3.5px;
}
.cookie-category .cookie-essential {
  font-weight: 600;
  color: var(--fw-art-mint);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal-actions button {
  padding: 7px 16px;
  border-radius: 9px;
  font-size: .97rem;
}
.cookie-modal-save {
  background: var(--fw-art-mint);
  color: #fff;
}
.cookie-modal-save:hover, .cookie-modal-save:focus {
  background: var(--fw-art-coral);
}

/* --- RESPONSIVE DESIGN (MOBILE-FIRST) -------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-columns {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .features-grid, .footer-columns, .card-container, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .feature, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .footer-columns > div {
    min-width: 0;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 60px;
    gap: 10px 11px;
  }
  .main-nav {
    display: none !important;
  }
  button.mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    margin-left: 0;
    padding: 8px 16px;
    font-size: 1rem;
  }
  .hero {
    min-height: 180px;
    padding-top: 34px;
    padding-bottom: 18px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .features-grid, .card-container, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 96vw;
    max-width: 98vw;
    padding: 18px 6vw 16px 6vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 515px) {
  .hero h1 {
    font-size: 1.47rem;
    margin-bottom: 13px;
  }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.02rem; }
  .section, section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 8px 14px 8px;
    font-size: .97rem;
  }
  .cookie-banner-content {
    margin-right: 0;
  }
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* --- PRINT (NEUTRALIZE BG) --- */
@media print {
  body, header, footer, section, .feature, .card, .testimonial-card {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  a, a:visited {
    color: #1B263B !important;
    text-decoration: underline;
  }
}

/* --- END OF STYLE --- */
