/*=== 0. RESET & BASE ===*/
/* Reset and normalize for cross-browser consistency */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FBFBFD;
  color: #223A4A;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #336699;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #112244;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}

/*=== 1. TYPOGRAPHY ===*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1E2748;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #374158;
  font-size: 1rem;
}

strong { font-weight: bold; }

/* Subtle pastel selection color */
::selection {
  background: #FFD6FA;
  color: #112244;
}

input, button, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/*=== 2. CONTAINERS & SECTIONS ===*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 768px) {
  .section, main section { padding: 28px 12px; }
  .container { padding: 0 10px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .content-wrapper { gap: 16px; }
  .section, main section { margin-bottom: 34px; }
}

/*=== 3. HEADER & NAVIGATION ===*/
header {
  background: linear-gradient(120deg, #FEE8FC 0%, #D3F8FF 100%);
  box-shadow: 0 4px 20px rgba(150,120,200,0.03);
  border-bottom: 1px solid #F0EBF1;
  z-index: 50;
  position: sticky;
  top: 0; 
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 36px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #223A4A;
  padding: 8px 13px;
  border-radius: 22px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FDEBEE;
  color: #112244;
}
.btn-primary {
  background: #FFD6FA;
  color: #112244;
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(180,160,220,0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.06s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFEBF7;
  color: #112244;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px 0 rgba(183,132,201,0.15);
}

.btn-secondary {
  background: #D5F7F5;
  color: #1E2748;
  border: none;
  padding: 12px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 1.5px 7px 0 rgba(80,190,176,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.06s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #DAFCFF;
  color: #223A4A;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 26px 0 rgba(83,197,185,0.13);
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.15rem;
  padding: 6px 16px;
  background: #FFD6FA;
  color: #112244;
  border-radius: 24px;
  border: 1px solid #F5CDE7;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFF0FC;
  color: #683A6B;
  box-shadow: 0 3px 16px 0 rgba(183,132,201,0.11);
}

@media (max-width: 1024px) {
  .main-nav { gap: 12px; }
  .btn-primary { font-size: 1rem; padding: 10px 20px; }
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 12px;
  }
}

/*=== 4. MOBILE MENU ===*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(250,245,255,0.98);
  z-index: 1001;
  transform: translateX(100vw);
  transition: transform 0.3s cubic-bezier(.8,.4,.27,1.03);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 28px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  margin: 24px 38px 16px 0;
  background: #FFD6FA;
  color: #683A6B;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #F5CDE7;
  box-shadow: 0 1.5px 7px rgba(183,132,201,0.08);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF0FC;
  color: #112244;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding: 0 38px 28px 0;
  gap: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  color: #1D2544;
  margin: 0;
  padding: 14px 34px;
  border-radius: 22px;
  transition: background 0.15s, color 0.15s, box-shadow 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: #E7E5FF;
  color: #683A6B;
}

@media (max-width: 480px) {
  .mobile-menu-close {
    margin-right: 18px;
    width: 38px; height: 38px;
    font-size: 1.6rem;
  }
  .mobile-nav {
    padding-right: 10px;
  }
}

/*=== 5. HERO SECTIONS & PAGE HEADINGS ===*/
.hero {
  background: linear-gradient(120deg, #FFF7E6 0%, #D6F6FF 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  box-shadow: 0 6px 24px 0 rgba(250,195,235, 0.09);
  min-height: 220px;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 20px;
}
.hero h1 {
  color: #112244;
  font-size: 2.65rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: #535884;
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero { padding: 22px 8px; border-radius: 0 0 16px 16px; }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { gap: 12px; }
}

/*=== 6. FLEXBOX LAYOUTS ===*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #FFF7FD;
  border-radius: 22px;
  box-shadow: 0 1.5px 8px 0 rgba(230,180,244,0.08);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(183,132,201,0.13);
  transform: translateY(-2px) scale(1.015);
}
.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: 900px) {
  .content-grid { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 14px; }
}

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

/*=== 7. SPECIAL LISTS & HIGHLIGHTED BLOCKS ===*/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-list li {
  background: #FFF7FD;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px 0 rgba(230,180,244,0.07);
  padding: 24px 22px;
  flex: 1 1 360px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.services-list li:hover {
  box-shadow: 0 10px 36px 0 rgba(230,180,244,0.15);
  transform: translateY(-2px) scale(1.016);
}
.services-list strong {
  color: #683A6B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
}

.topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}
.topic-filters button {
  border: none;
  border-radius: 24px;
  background: #F0F8FF;
  color: #1E2748;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 18px;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 1.5px 6px 0 rgba(200,230,247,0.1);
  transition: background 0.17s, color 0.13s;
}
.topic-filters button:hover, .topic-filters button:focus {
  background: #CBE3F3;
  color: #6843A4;
}

.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.article-previews li {
  background: #FFF7FD;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(185,150,201,0.07);
  min-width: 260px;
  flex: 1 1 320px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  transition: box-shadow 0.14s, transform 0.13s;
}
.article-previews li:hover {
  box-shadow: 0 9px 28px 0 rgba(183,132,201,0.12);
  transform: translateY(-2px) scale(1.012);
}

.input[type="search"] {
  display: block;
  width: 100%;
  max-width: 350px;
  border-radius: 18px;
  border: 1px solid #F7DAF6;
  padding: 10px 15px;
  font-size: 1rem;
  background: #FFFEFF;
  margin-bottom: 18px;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus {
  border-color: #FFD6FA;
  box-shadow: 0 1.5px 8px #FFD6FA44;
  outline: 0;
}

/*=== 8. TESTIMONIALS ===*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: #FFFFFF;
  border-radius: 22px;
  border: 1.5px solid #F5E8FF;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px rgba(172,152,240,0.09);
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 9px 28px 0 rgba(172,152,240,.17);
  transform: scale(1.01);
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #223A4A;
  font-style: italic;
  font-weight: 400;
}
.testimonial-card span {
  color: #835ABB;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/*== Color contrast fix for testimonials ==*/
.testimonial-card {
  background: #FFFFFF;
  color: #223A4A;
}

/*=== 9. FOOTER ===*/
footer {
  background: linear-gradient(120deg, #E9F0FB 0%, #FBE1FF 100%);
  border-top: 1.5px solid #EFE5F6;
  padding: 42px 0 32px 0;
  position: relative;
  margin-top: 48px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav a {
  color: #67418E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.18s, opacity 0.11s;
}
.footer-nav a:hover { color: #1E2748; opacity: 0.98; }
.footer-contact {
  color: #223A4A;
  font-size: 0.96rem;
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-nav { gap: 10px; }
}

/*=== 10. COOKIE CONSENT BANNER ===*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: linear-gradient(90deg, #FFF5E9 0%, #FDE6FF 100%);
  box-shadow: 0 -2px 28px 0 rgba(200,180,235,0.10);
  border-top: 2px solid #F5DBFA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 36px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.36s cubic-bezier(.78,.12,.71,1.0), opacity 0.19s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(160px);
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  color: #223A4A;
  font-size: 1rem;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 22px;
  padding: 10px 19px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: #D5F7F5;
  color: #112244;
  box-shadow: 0 1.5px 7px 0 rgba(80,190,176,0.09);
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #B0EDFF;
}
.cookie-banner .cookie-btn.reject {
  background: #FFE4EA;
  color: #835ABB;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #F8D3D1;
  color: #112244;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #683A6B;
  border: 1px solid #EED3FF;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #FFF0FC;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px;
    gap: 8px;
    font-size: 0.93rem;
  }
  .cookie-banner .cookie-banner-text { margin-right: 0; }
  .cookie-banner .cookie-actions { gap: 8px; }
}

/* Cookie settings modal popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(120,122,180,0.15);
  z-index: 2003;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FBEAFF;
  border-radius: 22px;
  max-width: 380px;
  width: 90vw;
  padding: 40px 28px 28px 28px;
  box-shadow: 0 7px 36px rgba(150,120,200,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2005;
  position: relative;
  animation: fadeInModal 0.32s cubic-bezier(.75,.1,.85,1.0);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(38px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0px) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #835ABB;
  margin-bottom: 4px;
  margin-top: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #1E2748;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-right: 5px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #835ABB;
  width: 20px; height: 20px;
  margin-right: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 18px; right: 18px;
  background: #FFD6FA;
  color: #835ABB;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F5CDE7;
  cursor: pointer;
  box-shadow: 0 1.5px 7px 0 rgba(183,132,201,0.07);
  transition: background 0.17s, color 0.13s;
}
.cookie-modal .close-modal-btn:hover {
  background: #FFFAFD;
}

/* Essential cookies are always enabled (disabled toggle) */
.cookie-modal .cookie-category input[disabled] + label {
  opacity: 0.6;
  font-style: italic;
  color: #665675;
}

@media (max-width: 470px) {
  .cookie-modal { padding: 26px 10px 18px 10px; }
}

/*=== 11. SPACING & GENERAL FLEXBOX PATTERNS ===*/
/* (Per style guide, ensuring consistent margins and flex alignments.) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container, .services-list, .content-grid, .article-previews, .topic-filters {
  gap: 24px;
  margin-bottom: 24px;
}
.card { margin-bottom: 20px; }
.content-grid, .card-container, .services-list, .article-previews {
  display: flex;
  flex-wrap: wrap;
  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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }


/*=== 12. MISC UI & MICROINTERACTIONS ===*/
/* Subtle icon filter for pastel feel on illustrated icons */
img[alt*="Innowacyjność"], img[alt*="Skuteczność"], img[alt*="Bezpieczeństwo"], img[alt*="Partnerstwo"] {
  filter: grayscale(0.11) brightness(1.10) contrast(0.93) drop-shadow(0 0 4px #F6E9FD);
  height: 38px; width: 38px; margin-right: 12px; flex-shrink: 0;
}

/* Lists in sections */
ul:not(.main-nav):not(.mobile-nav):not(.footer-nav):not(.services-list):not(.article-previews):not(.topic-filters) {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
  margin-left: 22px;
}
ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  margin-left: 22px;
}
ul li::marker, ol li::marker { color: #E1BBF5; }


/*=== 13. RESPONSIVE FLEXBOX STACKS ===*/
@media (max-width: 950px) {
  .services-list, .card-container, .article-previews, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .services-list li,
  .card {
    min-width: 180px;
    max-width: 98vw;
  }
}

/* Ensure no content overlaps by enforcing min margins and flexible stacking */


/*=== 14. ALERTS & FORMS (if present in the future) ===*/
.alert {
  background: #FFEBFC;
  color: #835ABB;
  padding: 14px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 6px #FFD6FA55;
  margin-bottom: 18px;
}

form input, form textarea {
  border-radius: 12px;
  border: 1.8px solid #ECD8FC;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  background: #FFFCFF;
  transition: border 0.16s, box-shadow 0.16s;
}
form input:focus, form textarea:focus {
  border-color: #FFD6FA;
  outline: 0;
  box-shadow: 0 2px 8px #FFD6FA28;
}
form button[type="submit"] {
  @extend .btn-primary;
}

/*=== 15. UTILITY CLASSES ===*/
.dreamy-shadow {
  box-shadow: 0 6px 41px 2px rgba(195,182,242,0.19);
}
.pastel-bg {
  background: #FBEAFF;
}
.centered { align-items: center; justify-content: center; }
.rounded-lg { border-radius: 22px; }
.text-center { text-align: center; }

/*=== 16. PRINT ===*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container, .section, main { width: 100%; padding: 0; margin: 0; }
}

/*=== 17. FOCUS VISIBLE ===*/
:focus-visible {
  outline: 2.5px solid #B68EDD;
  outline-offset: 1.5px;
  transition: outline 0.13s;
}

/*=== 18. SCROLLBAR STYLING (pastel, unobtrusive) ===*/
::-webkit-scrollbar {
  width: 7px;
  background: #F3F3FC;
}
::-webkit-scrollbar-thumb {
  background: #ECD8FC;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD6FA;
}
