/* RESET & BASE -------------------------------------------- */
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,
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;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFFBEF;
  color: #195656;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #195656;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #FFD600;
}
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s, transform .15s;
}
input, textarea, select {
  font-family: inherit;
}

/* VARIABLES -------------------------------------------- */
:root {
  --color-primary: #195656;
  --color-secondary: #FFD600;
  --color-accent: #FFFFFF;
  --color-bg: #FFFBEF;
  --color-success: #97eb8b;
  --color-error: #ff637a;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-pop: 0 4px 28px 0 rgba(25,86,86, 0.10), 0 2px 8px 0 rgba(255, 214, 0, 0.09);
  --shadow-card: 0 2px 8px 0 rgba(25,86,86,0.08);
}

/* TYPOGRAPHY -------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #195656;
  letter-spacing: 0.015em;
  line-height: 1.17;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--color-primary);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  color: #195656;
  font-weight: 700;
}
blockquote {
  font-style: italic;
  color: #195656;
  background: #FFF6CE;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  position: relative;
  box-shadow: var(--shadow-card);
}
cite {
  display: block;
  font-size: 1rem;
  color: #434443;
  margin-top: 6px;
  font-style: normal;
}
h1, h2, h3 {
  text-shadow: 0 2px 6px rgba(255, 214, 0, 0.06);
}

/* SECTIONS & LAYOUT -------------------------------------------- */
.section,
section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }
  .content-grid {
    flex-direction: row;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  background: #FFFBEF;
  border-radius: var(--radius-md);
  padding: 26px 26px 22px 26px;
}

.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;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  background: #FFF6CE;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,86,86,0.16);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION -------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #FFD600 50%, #EEE9A3 100%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 20px 0 rgba(25,86,86,0.06);
  margin-bottom: 40px !important;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #195656;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px #FFF6CE;
}
.hero p {
  font-size: 1.25rem;
  color: #195656;
  margin-bottom: 26px;
}
@media (min-width: 860px) {
  .hero .content-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

/* MAIN NAVIGATION -------------------------------------------- */
header {
  background: #FFFBEF;
  box-shadow: 0 2px 8px 0 rgba(25,86,86,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 68px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 14px;
}
.main-nav a {
  font-size: 1.01rem;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-secondary);
  color: #195656;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFD600;
  color: #195656;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px 0 rgba(25,86,86,0.06);
  padding: 16px 34px 13px 34px;
  margin-left: 16px;
  cursor: pointer;
  position: relative;
  transition: background .2s, color .2s, box-shadow .2s, transform .18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFE554;
  color: #195656;
  box-shadow: 0 6px 32px 0 rgba(25,86,86,0.18);
  transform: scale(1.05) rotate(-2deg);
}

/* MOBILE NAVIGATION -------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #FFD600;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  color: #195656;
  cursor: pointer;
  margin-left: 16px;
  transition: background .2s, color .2s;
  z-index: 222;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFE554;
  color: #144444;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFBEF;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .42s cubic-bezier(.62,1.2,.4,1);
  box-shadow: 3px 0 20px 0 rgba(25, 86, 86, 0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 26px 16px 0;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #195656;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE554;
  color: #144444;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 48px 32px;
  gap: 22px;
  font-family: "Montserrat", Arial, sans-serif;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 13px 8px;
  border-radius: var(--radius-md);
  color: #195656;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD600;
  color: #195656;
}
@media (max-width: 992px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 992px) {
  header .container {
    justify-content: space-between;
    min-height: 66px;
  }
}

/* FOOTER -------------------------------------------- */
footer {
  background: #195656;
  color: #FFD600;
  margin-top: 40px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -4px 28px 0 rgba(25,86,86, 0.09);
  padding: 36px 0 0 0;
  font-size: 1rem;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-bottom: 20px;
}
footer .footer-brand img {
  width: 148px;
  margin-bottom: 10px;
}
footer .footer-brand {
  max-width: 340px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  color: #FFD600;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-md);
  padding: 6px 12px;
  background: transparent;
  transition: background .19s, color .19s;
}
.footer-links a:hover, .footer-links a:focus {
  background: #FFD600;
  color: #195656;
}
.footer-contact {
  max-width: 340px;
  color: #FFD600;
}
.footer-bottom {
  background: #144444;
  color: #FFD600;
  font-size: 1rem;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  text-align: center;
  padding: 8px 0 10px 0;
  margin-top: 6px;
}
@media (min-width: 900px) {
  footer .content-wrapper {
    flex-direction: row;
    gap: 28px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand, .footer-contact, .footer-links {
    min-width: 230px;
  }
}

/* FEATURES/PROCESS/SERVICES -------------------------------------------- */
.features ul, .process ol {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 8px 0;
}
.features ul li, .process ol li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #FFF6CE;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px 22px 16px 12px;
  margin-bottom: 5px;
  font-size: 1.07rem;
  color: #195656;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.features ul li img, .process ol li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  flex-shrink: 0;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #FFFBEF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 26px 24px 18px 24px;
  flex: 1 1 232px;
  min-width: 230px;
  max-width: 285px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .19s;
  border-left: 6px solid #FFD600;
  font-family: "Open Sans", Arial, sans-serif;
}
.service-card:hover {
  box-shadow: 0 8px 24px 0 rgba(25,86,86,0.18);
  background: #FFF6CE;
  transform: scale(1.041);
}
.service-card h3 {
  color: #195656;
  font-size: 1.18rem;
  margin-bottom: 7px;
}

/* TABLE STYLES -------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFBEF;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(25,86,86,0.07);
  overflow: hidden;
}
thead {
  background: #FFD600;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  font-size: 1rem;
}
th {
  color: #195656;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}
tbody tr:nth-child(odd) {
  background: #FFF6CE;
}
tbody tr:hover {
  background: #FFE554;
  transition: background .17s;
}

/* ABOUT/STATS/TEAM -------------------------------------------- */
.text-section {
  margin-bottom: 16px;
  padding: 16px 18px;
  background: #FFFBEF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 1.08rem;
}
.accreditations, .stats {
  margin-top: 24px;
}
.accreditations ul, .stats ul {
  margin-top: 8px;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CASE STUDIES (REALIZACJE) -------------------------------------------- */
.case-studies .text-section {
  border-left: 8px solid var(--color-secondary);
  background: #FFF6CE;
  margin-bottom: 8px;
}
.impact .text-section ul {
  gap: 7px;
  margin-bottom: 12px;
}

/* ARTICLES (PORADNIK) -------------------------------------------- */
.articles ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.articles ul li {
  background: #FFF6CE;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 0;
}
.articles ul li a {
  font-family: "Montserrat", Arial, sans-serif;
  color: #195656;
  font-size: 1.13rem;
  text-decoration: underline dotted #FFD600 2px;
  margin-bottom: 6px;
  display: inline-block;
  font-weight: bold;
  transition: color .2s, text-shadow .17s;
}
.articles ul li a:hover {
  color: #FFD600;
  text-shadow: 0 1px 12px #FFD600;
}

/* FAQ -------------------------------------------- */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #195656;
  font-size: 1.13rem;
  margin-top: 20px;
  margin-bottom: 5px;
}
dd {
  color: #393a3a;
  margin-bottom: 16px;
  font-size: 1rem;
  padding-left: 0.75em;
}

/* LEGAL SECTIONS -------------------------------------------- */
.legal .text-section,
.legal ol {
  font-size: 1.05rem;
}
.legal ol {
  margin-left: 1.2em;
}
.legal h2 {
  font-size: 1.17rem;
  margin-bottom: 6px;
  margin-top: 16px;
}

/* CONTACT -------------------------------------------- */
address {
  font-style: normal;
  color: #195656;
  line-height: 1.7;
}
.contact .cta-btn {
  margin-top: 10px;
}

/* THANK YOU PAGE -------------------------------------------- */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* REVIEW FORM HIGHLIGHT -------------------------------------------- */
.review-form p {
  font-size: 1.06rem;
}

/* CTA SECTIONS -------------------------------------------- */
.cta {
  background: #FFD600;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px 0 rgba(25,86,86,0.08);
  margin-bottom: 40px !important;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta-btn {
  font-size: 1.13rem;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 22px 0 rgba(255,214,0,0.15);
  border: 2px solid #FFD600;
  min-width: 220px;
}

/* ANIMATED and PLAYFUL DYNAMIC EFFECTS -------------------------------------------- */
.card, .testimonial-card, .service-card, .text-section, .articles ul li {
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .service-card:hover, .articles ul li:hover {
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 12px 34px 0 rgba(25,86,86,0.16);
}
.cta-btn:active {
  transform: scale(0.99);
}
.cta-btn {
  transition: background .22s, color .19s, box-shadow .19s, transform .16s;
}

@media (min-width: 720px) {
  .section, section {
    padding: 64px 22px;
  }
  .card, .testimonial-card, .service-card {
    min-width: 270px;
  }
}

/* SPACING & RESPONSIVE -------------------------------------------- */
@media (max-width: 768px) {
  .content-wrapper,
  .features ul,
  .service-cards,
  .footer-links,
  .articles ul {
    flex-direction: column;
    gap: 20px;
  }
  .section, section {
    padding: 26px 8px;
    margin-bottom: 36px !important;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: auto;
  }
}
@media (max-width: 550px) {
  .container {
    padding: 0 4px;
  }
  .section, section {
    padding: 19px 0px;
  }
  h1 {
    font-size: 1.5rem;
  }
  .card, .service-card,
  .testimonial-card, .text-section {
    padding: 10px 7px 10px 12px;
    min-width: 0;
  }
}

/* COOKIE CONSENT BANNER -------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #FFD600;
  color: #195656;
  padding: 22px 12px 17px 12px;
  box-shadow: 0 -2px 18px 0 rgba(25,86,86,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Open Sans', Arial, sans-serif;
  gap: 22px;
  font-size: 1.03rem;
  opacity: 1;
  transform: translateY(0%);
  transition: opacity .34s, transform .38s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-btn {
  background: #195656;
  color: #FFD600;
  border: none;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .19s;
  box-shadow: 0 2px 16px rgba(25,86,86,0.07);
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #144444;
  color: #FFD600;
}
.cookie-consent-btn.settings {
  background: #fffbe6;
  color: #195656;
  border: 1px solid #195656;
  margin-left: 10px;
}
.cookie-consent-btn.settings:hover {
  background: #FFD600;
  color: #195656;
}
@media (max-width: 680px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    font-size: 0.98rem;
    padding: 16px 4px 13px 4px;
  }
}

/* COOKIE CONSENT MODAL -------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; top:0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,45,55, 0.34);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity .24s, transform .19s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.08);
}
.cookie-modal-content {
  background: #FFFBEF;
  border-radius: var(--radius-md);
  padding: 36px 32px 32px 32px;
  box-shadow: 0 12px 32px 0 rgba(25,86,86, 0.12);
  max-width: 420px;
  width: 94vw;
  position: relative;
  color: #195656;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: #195656;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #195656;
}
.cookie-switch {
  width: 42px;
  height: 24px;
  border: 1.5px solid #FFD600;
  border-radius: 20px;
  background: #fffbe6;
  position: relative;
  transition: background .18s;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch .knob {
  position: absolute;
  left: 2px; top:2px;
  width: 20px; height: 20px;
  background: #FFD600;
  border-radius: 50%;
  transition: left .17s;
}
.cookie-switch input[type="checkbox"]:checked + .knob {
  left: 18px;
  background: #195656;
}
.cookie-category.essential label {
  color: #aaa;
  font-weight: 700;
}
.cookie-category.essential .cookie-switch {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #195656;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #FFD600;
}

/* SCROLLBAR *-----------------------------------------*/
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #FFD600;
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: #fff;
}

/* FUN FONTS & HEADLINES -------------------------------------------- */
@media (max-width: 400px) {
  h1, h2, h3 {
    font-size: 1.05rem;
  }
}

/* PLAYFUL DYNAMIC DECORATIVE EFFECTS -------------------------------------------- */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 6px;
  width: 65px;
  background: #FFD600;
  margin-top: 7px;
  border-radius: 6px;
  opacity: .83;
  animation: playfulbar 1.2s cubic-bezier(.55,1.65,.39,.99);
}
@keyframes playfulbar {
  0% { width: 0; opacity: 0; }
  60% { width: 75px; opacity: 1; }
  100% { width: 65px; opacity: 0.83; }
}
.cta-btn {
  animation: funPop .44s cubic-bezier(.35,1.22,.45,1.09) 1;
}
@keyframes funPop {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* MICRO-INTERACTIONS -------------------------------------------- */
.cta-btn:focus, .mobile-menu-toggle:focus, .cookie-consent-btn:focus, .mobile-menu-close:focus, .footer-links a:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}

/* ANIMATED ENTRY EFFECTS (optional/for extra flair) */
.section, section, .card, .service-card, .testimonial-card, .articles ul li {
  animation: fadeUp .6s cubic-bezier(.48,1.44,.40,1.02) both;
}
@keyframes fadeUp {
  from {
    opacity: 0; transform: translateY(36px);
  }
  to {
    opacity: 1; transform: none;
  }
}

/* PRINT FRIENDLY BASE -------------------------------------------- */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display:none !important; }
  body { background: #fff; color: #222; }
  .card, .service-card, .section, section { background: #fff !important; box-shadow: none !important; }
}
