/* --- CSS RESET & BASE TYPOGRAPHY --- */
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, 
main, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    background: #f9f9fe;
    color: #183153;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #183153;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F8B400;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
}
::-webkit-input-placeholder{color:#bfc3d1;}
::-moz-placeholder{color:#bfc3d1;}
:-ms-input-placeholder{color:#bfc3d1;}
::placeholder{color:#bfc3d1;}

/* --- BRAND COLORS --- */
:root {
  --primary: #183153;
  --secondary: #F8B400;
  --accent: #FFFFFF;
  --electric-blue: #12B5E5;
  --hot-pink: #F441A5;
  --vivid-green: #00C88A;
  --bold-red: #FD356E;
  --neutral-light: #f9f9fe;
  --shadow: rgba(24,49,83,0.12);
}

/* --- FONT FAMILIES --- */
h1, h2, h3, h4, h5, h6, .btn, .main-nav a, .mobile-nav a, .category {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
}

/* --- GENERAL CONTAINER --- */
.container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 3px 18px -8px var(--shadow);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  position: relative;
}
.logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-size: 16px;
  color: var(--accent);
  font-weight: 700;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.main-nav a:hover, .main-nav a:focus {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 28px;
  padding: 12px 28px;
  font-size: 18px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.13s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px -2px var(--shadow);
  margin-top: 8px;
  margin-bottom: 8px;
  background: var(--electric-blue);
  color: #fff;
}
.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--bold-red));
  color: #fff;
  border: none;
  box-shadow: 0 3px 12px -2px rgba(248,180,0,.12);
}
.btn:hover, .btn:focus {
  filter: brightness(0.95) saturate(1.3);
  color: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px -3px var(--hot-pink);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 60;
  position: absolute;
  top: 14px;
  right: 20px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--bold-red);
  color: white;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(24,49,83, 0.98);
  color: #fff;
  z-index: 99;
  height: 100vh;
  width: 100vw;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  justify-content: flex-start;
  overflow-y: auto;
  gap: 18px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.3rem;
  margin: 24px 0 18px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--hot-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 22px;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 0;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

@media (max-width: 1024px) {
  .main-nav {
    font-size: 15px;
    gap: 15px;
  }
  header .container {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- HERO / CTA --- */
.hero {
    background: linear-gradient(110deg, var(--electric-blue) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 60px 0 60px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.hero .container {
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: 320px;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 28px;
    max-width: 620px;
}
.hero h1 {
    font-size: 2.6rem;
    line-height: 1.13;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    text-shadow: 0 6px 20px rgba(24,49,83,0.12);
}
.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
}

.cta {
    background: var(--vivid-green);
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}
.cta .content-wrapper {
    align-items: flex-start;
    gap: 16px;
    max-width: 600px;
}
.cta h2 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(24,49,83,0.12);
}
.cta p {
    color: #fff;
}

/* --- FEATURES --- */
[luster-lane-features], .feature-grid {
    width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px -4px var(--shadow);
  padding: 30px 20px 22px 20px;
  flex: 1 1 260px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.26s, transform 0.26s;
  border-left: 8px solid var(--bold-red);
  position: relative;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
    box-shadow: 0 8px 32px -6px var(--electic-blue),0 16px 34px -19px var(--hot-pink);
    transform: translateY(-2px) scale(1.025);
    border-left: 8px solid var(--hot-pink);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.feature-grid p {
  color: #222a3f;
  font-size: 1rem;
}

/* --- SERVICES LIST (INDEX + KURSE) --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
  list-style: none;
}
.services-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px -3px var(--shadow);
  padding: 26px 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.08rem;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--vivid-green);
  min-width: 210px;
}
.services-list .price {
    margin-top: 6px;
    color: var(--primary);
    font-weight: 700;
    background: var(--secondary);
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 1.04rem;
    box-shadow: 0 0 3px var(--hot-pink);
}
.services-list li strong {
  color: var(--primary);
  font-weight: 800;
}
.services-list li:hover, .services-list li:focus-within {
    box-shadow: 0 7px 22px -5px var(--electric-blue),0 12px 23px -11px var(--vivid-green);
    border-left-color: var(--secondary);
    transform: translateY(-2px) scale(1.020);
    transition: box-shadow 0.16s, transform 0.2s;
}

/* --- BLOG CARDS --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0 30px 0;
}
.blog-article {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px 16px 22px;
  box-shadow: 0 3px 12px -2px var(--shadow);
  flex: 1 1 260px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.12s;
  border-top: 4px solid var(--electric-blue);
  position: relative;
  overflow: hidden;
}
.blog-article.featured {
  border-top: 4px solid var(--hot-pink);
  background: #fff3fd;
  box-shadow: 0 4px 18px -6px var(--hot-pink);
}
.blog-article h3 a {
  color: var(--hot-pink);
  font-size: 1.18rem;
  line-height: 1.2;
  transition: color 0.2s;
  font-weight: 800;
}
.blog-article h3 a:hover, .blog-article h3 a:focus {
  color: var(--vivid-green);
}
.blog-article .category {
  background: var(--vivid-green);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  padding: 3px 10px;
  font-weight: 500;
  margin-top: 9px;
  display: inline-block;
}
.blog-article.featured .category {
  background: var(--hot-pink);
}
.blog-article:hover, .blog-article:focus-within {
  box-shadow: 0 8px 30px -9px var(--electric-blue);
  transform: translateY(-2px) scale(1.035);
  border-top: 4px solid var(--secondary);
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.filter-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.06em;
}
.categories-filter button {
  background: var(--bold-red);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 4px 16px;
  font-size: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.2s;
}
.categories-filter button:hover, .categories-filter button:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- FAQ LIST (KURSE) --- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.faq-list > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px -1px var(--shadow);
  padding: 20px 18px 14px 18px;
  flex: 1 1 235px;
  min-width: 195px;
  transition: box-shadow 0.13s, transform 0.15s;
}
.faq-list > div:hover, .faq-list > div:focus-within {
    box-shadow: 0 8px 16px -10px var(--vivid-green),0 12px 22px -13px var(--electric-blue);
    transform: translateY(-1px) scale(1.018);
}
.faq-list h3 {
  color: var(--hot-pink);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  margin-bottom: 5px;
}
.faq-list p {
  font-size: .92em;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: #fffbe8;
    margin-bottom: 0;
    padding: 44px 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px -3px var(--shadow);
  color: #292d44;
  min-width: 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
  flex-wrap: wrap;
  border-left: 6px solid var(--electric-blue);
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  font-style: italic;
  color: #183153;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  line-height: 1.5;
}
.testimonial-card cite {
  font-size: .98rem;
  color: #292d44;
  font-style: normal;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 8px 25px -6px var(--electric-blue);
    border-left: 6px solid var(--hot-pink);
    transform: scale(1.02) translateY(-2px);
}

/* --- FOOTER --- */
footer {
  background: #183153;
  color: #fff;
  padding: 36px 0 29px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--secondary);
  font-size: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--hot-pink);
}
footer address {
  font-style: normal;
  font-size: 15px;
  color: #e0e9fa;
}
footer img {
  height: 44px;
  margin-bottom: 14px;
}

/* --- CONTACT PAGE & MAP PLACEHOLDER --- */
.text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-block {
  background: #f3fdfe;
  border-left: 4px solid var(--electric-blue);
  border-radius: 7px;
  padding: 14px 16px 12px 16px;
  font-size: 1.06rem;
  color: var(--primary);
  margin-bottom: 16px;
  min-width: 210px;
  box-shadow: 0 2px 10px -4px var(--shadow);
}
.map-placeholder {
  background: var(--neutral-light);
  color: var(--primary);
  border-radius: 11px;
  padding: 20px;
  box-shadow: 0 1px 8px -2px var(--shadow);
  min-width: 224px;
  min-height: 70px;
  font-size: .99rem;
  font-style: italic;
}

/* --- SECTIONS LAYOUT (Spacing) --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px -2px var(--shadow);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* For other content wrappers */
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .content-grid, .faq-list, .blog-list, .footer .container, .text-section, .card-container {
    flex-direction: column !important;
    flex-wrap: wrap;
    gap: 20px !important;
  }
  .section, section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  header .container {
    min-height: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .btn, .btn-primary {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
  .logo img {
    height: 32px;
  }
  .feature-grid > div, .faq-list > div, .services-list li, .blog-article {
    min-width: 0;
    padding: 22px 14px 12px 16px;
  }
  .cta .content-wrapper {
    max-width: 100%;
  }
  .map-placeholder {
    min-width: unset;
    padding: 14px;
  }
  .contact-info-block {
    min-width: unset;
    padding: 10px;
  }
  .hero .container, .cta .container {
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.78rem;
  }
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1 {
    font-size: 2.2rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.13;
    letter-spacing: -1.5px;
}
h2 {
    font-size: 1.4rem;
    color: var(--bold-red);
    margin-bottom: 14px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
}
h3 {
    font-size: 1.13rem;
    color: var(--hot-pink);
    margin-bottom: 6px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
}
h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: var(--vivid-green);
}
p, li, ul, ol, address, span, cite {
  color: #253057;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center !important; }
.align-right { text-align: right !important; }
.hidden { display: none !important; }
.break { flex-basis: 100%; height: 0; }
.gap-20 { gap: 20px !important; }

/* --- MICRO-INTERACTIONS & EFFECTS --- */
.card, .feature-grid > div, .services-list li, .blog-article, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.13s, border-color 0.19s, transform 0.13s;
}
.btn, .btn-primary, .categories-filter button, .mobile-menu-toggle, .mobile-menu-close, .main-nav a, .mobile-nav a {
    transition: background 0.13s, color 0.13s, border 0.16s, transform 0.12s, box-shadow 0.15s;
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 120;
  box-shadow: 0 -2px 20px -6px var(--bold-red);
  padding: 28px 18px;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 68px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s, opacity 0.25s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  margin: 0 18px 0 0;
  font-size: .96em;
}
.cookie-banner .cookie-btn {
  margin-left: 7px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 20px;
  border:none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 7px 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.cookie-banner .cookie-btn.settings {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  filter: brightness(1.09);
  transform: scale(1.045);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 140;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 29, 52, 0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 60px -12px var(--hot-pink);
  padding: 34px 28px 32px 28px;
  min-width: 315px;
  min-height: 220px;
  position: relative;
  max-width: 94vw;
}
.cookie-modal-content h3 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.19em;
}
.cookie-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--hot-pink);
  font-size: 1.7em;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--bold-red);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 19px 0;
  font-size: 1.02em;
}
.cookie-category label {
  font-weight: 700;
  color: var(--primary);
  font-size: 1em;
}
.cookie-toggle {
  display: inline-block;
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: var(--electric-blue);
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px -2px var(--shadow);
}
.cookie-toggle input:checked + span {
  transform: translateX(18px);
  background: var(--secondary);
}
.cookie-category.essential .cookie-toggle {
  background: #bfc3d1;
  cursor: not-allowed;
}
.cookie-category.essential label {
  color: #888;
}
/* Modal Action Buttons */
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1em;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.25rem;
    line-height: 1.15;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .feature-grid > div, .services-list li, .blog-article, .faq-list > div {
    border-left-width: 4px; border-top-width: 3px;
  }
}

@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 16px 7px 20px 8px;
    border-radius: 11px;
    min-width: 0;
  }
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
  section, main, .container, .content-wrapper { background: #fff !important; box-shadow: none !important; }
}
