/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F5F7FA;
  color: #243656;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
  color: #243656;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol { margin-bottom: 18px; }
ul, ol { padding-left: 24px; }
strong { font-weight: 700; }
a {
  color: #DB1A27;
  text-decoration: none;
  transition: color .2s cubic-bezier(.55,1,.35,1); 
}
a:hover, a:focus {
  color: #B10013;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 20px;
}
/* --- PLAYFUL & DYNAMIC COLORS & FONTS --- */
:root {
  --color-primary: #243656;
  --color-accent: #DB1A27;
  --color-accent-dark: #B10013;
  --color-light: #FFFFFF;
  --color-bg: #F5F7FA;
  --color-secondary: #FDCB2A;
  --color-fun-pink: #FF84A2;
  --color-fun-blue: #4EB6E6;
  --color-fun-green: #63DF9A;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body { font-family: 'Roboto', Arial, sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
/* --- HEADER / NAVIGATION --- */
header {
  background: var(--color-light);
  box-shadow: 0 2px 12px 0 rgba(36,54,86,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header a img { height: 46px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 0;
  border-radius: 7px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-fun-blue);
  color: var(--color-light);
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  padding: 12px 32px;
  font-size: 1.125rem;
  border-radius: 29px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(219,26,39,0.10);
  cursor: pointer;
  margin-left: 14px;
  transition: background .2s, transform .15s, box-shadow .2s cubic-bezier(.55,1,.35,1);
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-dark);
  color: var(--color-light);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 28px rgba(36,54,86,0.14);
}
/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 2rem;
  border: none;
  padding: 8px 18px;
  border-radius: 12px;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-fun-pink);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--color-light);
  z-index: 9999;
  box-shadow: 0 6px 64px rgba(36,54,86,0.28);
  transform: translateX(100%);
  transition: transform .41s cubic-bezier(.37,1.04,.68,1.06);
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 24px 32px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 24px;
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(219,26,39,0.13);
  cursor: pointer;
  transition: background .17s;
  z-index: 3;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun-blue);
  color: var(--color-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 90px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--color-primary);
  padding: 12px 0;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 8px;
  text-align: center;
  background: transparent;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun-green);
  color: var(--color-light);
}
@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; margin-left: 12px;}
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}
/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(90deg,#FDCB2A 0% 20%, #F5F7FA 80% 100%);
  padding: 60px 0 60px 0;
  margin-bottom: 60px; /* default as .section */
  position: relative;
  overflow: hidden;
  animation: heroFadeIn 1.5s cubic-bezier(.71,.01,.29,1) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero h1 { color: var(--color-primary); font-size: 2.8rem; margin-bottom: 10px; }
.hero p { color: #3A4856; font-size: 1.17rem; margin-bottom: 24px; }
.hero .btn-primary { margin-top: 15px; }
/* --- SECTIONS & SPACING ALIGNMENT --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* --- FEATURES & CARDS --- */
.features .feature-grid,
.service-list .service-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.feature,
.service-item,
.card {
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(75,157,224,0.07), 0 0 0 3px #fff;
  padding: 36px 28px 30px 28px;
  min-width: 265px;
  flex: 1 1 285px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;  /* for decorative overlays only */
  transition: transform 0.26s cubic-bezier(.45,.19,.12,1.02), box-shadow .18s cubic-bezier(.62,.08,.12,1.03);
}
.feature:hover, .service-item:hover, .card:hover {
  transform: translateY(-10px) scale(1.035) rotate(-1deg);
  box-shadow: 0 14px 48px 0 rgba(219,26,39,0.13), 0 0 0 3px var(--color-accent);
  z-index: 3;
}
.feature img, .service-item img {
  height: 54px; width: 54px; border-radius: 14px; background: var(--color-fun-blue);
  box-shadow: 0 1px 5px #c3c6c8;
  margin-bottom: 8px;
  animation: iconBounce 1.6s infinite alternate ease-in-out;  /* playful! */
}
@keyframes iconBounce {
  0% { transform: translateY(4px) scale(1.01); }
  80% { transform: translateY(-6px) scale(1.07) rotate(-4deg); }
  100% { transform: translateY(-16px) scale(1.09) rotate(1deg); }
}
.feature h3, .service-item h3 { font-size: 1.19rem; color: var(--color-accent); font-weight: 700; }
.feature p, .service-item p { color: #44506C; margin-bottom: 0; }
.service-price, .service-item strong { color: var(--color-accent-dark); font-size: 1.04rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; margin-top: 2px; }
.pricing-summary {
  background: var(--color-fun-pink);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 18px 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
  font-size: 1.13rem;
}
/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--color-fun-blue);
  padding-top: 36px; padding-bottom: 36px;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: var(--color-accent-dark);
  text-shadow: 1px 1px 5px #fff7;
  margin-bottom: 26px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  min-width: 290px; max-width: 370px;
  background: #F5F7FA;
  border-radius: 22px;
  box-shadow: 0 1px 14px 0 rgba(36,54,86,0.06);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.testimonial-card:after {
  content: '★';
  font-size: 2rem;
  color: var(--color-fun-pink);
  position: absolute; right: 22px; top: 13px;
  opacity: .25;
  pointer-events: none;
}
.testimonial-content { display: flex; flex-direction: column; gap: 7px; }
.testimonial-content p {
  color: #243656;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
}
.testimonial-name {
  font-size: 0.98rem;
  color: #5D626A;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.client-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.client-logos img {
  height: 52px;
  transition: transform .22s, filter .18s;
  filter: saturate(0.8);
}
.client-logos img:hover {
  transform: scale(1.08) rotate(5deg);
  filter: saturate(1.2) brightness(1.12);
}
/* --- CARDS, LISTINGS & FLEX LAYOUTS --- */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
/* --- ABOUT PAGE --- */
.about, .about-preview {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(36,54,86,0.08);
  padding: 48px 32px;
  margin-bottom: 40px;
}
.mission, .team-overview {
  background: var(--color-fun-blue);
  color: var(--color-primary);
  border-radius: 15px;
  padding: 14px 22px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(78,182,230,0.08);
}
.values-list, .faq-list, .approach-steps, .process-steps, .next-steps {
  margin: 20px 0 18px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.values-list li, .faq-list li, .approach-steps li, .process-steps li, .next-steps li {
  background: var(--color-fun-green);
  color: var(--color-primary);
  padding: 13px 19px;
  border-radius: 13px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(99,223,154,0.09);
  font-weight: 500;
}
/* Blog, Resources, FAQ etc. */
.blog-categories {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.category {
  font-size: .98rem;
  background: var(--color-fun-pink);
  color: var(--color-primary);
  border-radius: 15px;
  padding: 5px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 9px #ff84a231;
}
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.blog-post {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 22px rgba(237,56,86,0.09);
  padding: 28px 20px 22px 20px;
  flex: 1 1 265px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .16s, box-shadow .18s;
}
.blog-post:hover {
  transform: scale(1.035) rotate(1.9deg);
  box-shadow: 0 4px 32px rgba(237,56,86,0.13);
}
.blog-post h3 { font-size: 1.13rem; color: var(--color-accent); }
.blog-post p { font-size: .98rem; color: var(--color-primary); }
.blog-post a {
  align-self: flex-start;
  margin-top: 7px;
  background: var(--color-fun-blue);
  color: var(--color-light);
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: bold;
  font-size: .96rem;
  transition: background .2s;
}
.blog-post a:hover {
  background: var(--color-accent);
  color: var(--color-light);
}
/* FAQ */
.faq-list li {
  cursor: pointer;
  font-size: 1.03rem;
  position: relative;
  transition: box-shadow .15s, background .12s;
}
.faq-list li h3 { font-size: 1.05rem; display: inline; margin-right: 10px; }
.faq-list li div {
  margin-top: 6px;
  font-size: .98rem;
  color: var(--color-primary);
  display: block;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 99999;
  background: var(--color-fun-pink);
  color: var(--color-primary);
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 22px rgba(219,26,39,.07);
  animation: slideUpBanner .4s both cubic-bezier(.57,1.29,.64,1.03);
}
@keyframes slideUpBanner {
  from { transform: translateY(64px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  margin: 0;
  transition: background .2s, color .2s,
    box-shadow .2s, transform .16s cubic-bezier(.44,1.11,.23,.99);
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(36,54,86,0.04);
}
.cookie-banner .accept {
  background: var(--color-accent-dark);
  color: var(--color-light);
}
.cookie-banner .accept:hover {
  background: var(--color-fun-green);
  color: var(--color-primary);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent-dark);
}
.cookie-banner .reject:hover {
  border-color: var(--color-fun-blue);
  color: var(--color-fun-blue);
}
.cookie-banner .settings {
  background: var(--color-fun-blue);
  color: var(--color-light);
}
.cookie-banner .settings:hover {
  background: var(--color-primary);
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left:0; top:0; width:100vw; height:100vh;
  background:rgba(36,54,86,.25);
  z-index:100000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .29s both;
}
@keyframes fadeInModal { from { opacity:0; } to { opacity:1; } }
.cookie-modal {
  background: var(--color-light);
  border-radius: 23px;
  box-shadow: 0 8px 40px rgba(36,54,86,0.22);
  padding: 36px 28px 24px 28px;
  min-width: 340px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: popModal .37s cubic-bezier(.63,1.18,.18,.87) both;
}
@keyframes popModal { 0% { transform: scale(.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.24rem;
  color: var(--color-accent);
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: var(--color-primary);
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #e5e8ef;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background .22s;
  margin-right: 7px;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-fun-green);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  height: 18px; width: 18px;
  top: 2px; left: 2px;
  border-radius: 9px;
  background: var(--color-light);
  box-shadow: 0 1px 4px #ddd;
  transition: left .22s;
}
.cookie-toggle:checked:before { left: 17px; }
.cookie-modal-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-size: 1.02rem;
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-modal-actions button.cancel {
  background: #fff;
  color: var(--color-accent-dark);
  border: 2px solid var(--color-accent-dark);
}
/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-fun-green);
  padding: 36px 0;
  margin-bottom: 60px;
}
.cta-banner .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-primary);
  font-size: 2.1rem;
  margin-bottom: 8px;
}
.cta-banner .btn-primary {
  margin: 0 auto;
  margin-top: 5px;
}
/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 60px;
  font-size: 1rem;
  padding: 0 0 20px 0;
}
.footer-top {
  border-bottom: 1.7px solid #394e73;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 20px 0;
}
.footer-logo img {
  height: 43px;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  padding: 7px 0;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-fun-blue);
  color: var(--color-primary);
}
.footer-cta .btn-primary {
  background: var(--color-fun-pink);
  color: var(--color-primary);
  font-size: 1.03rem;
  padding: 9px 23px;
  margin-left: 0;
}
.footer-cta .btn-primary:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-bottom {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .99rem;
}
.footer-contact img { height: 19px; width: 19px; margin-right: 6px; vertical-align: middle; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social a img {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 9px #fff8;
  transition: transform .16s, background .18s;
}
.footer-social a:hover img {
  transform: scale(1.12) rotate(-7deg);
  background: var(--color-fun-green);
}
/* --- CONTACT DETAILS --- */
.contact-details .contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details .contact-info div,
.contact-details .hours {
  background: var(--color-fun-green);
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 1.09rem;
  margin-bottom: 8px;
}
.google-map {
  margin: 18px 0;
  padding: 22px;
  background: var(--color-fun-blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.google-map img {
  width: 56px; height: 56px;
}
/* POLICIES & PLAIN SECTIONS */
.policy {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(36,54,86,0.08);
  margin: 40px 0;
  padding: 48px 26px;
}
.policy h1, .policy h2 { color: var(--color-accent); }
.policy ul li {
  margin-bottom: 10px;
  color: var(--color-primary);
}
/* --- FLEX RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
  .feature, .service-item, .card, .blog-post {
    min-width: 230px;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .cta-banner h2 { font-size: 1.3rem; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero { padding: 38px 0; }
  .section, .about, .about-preview, .policy {
    padding: 22px 7px;
    border-radius: 15px;
  }
  .feature, .service-item, .card, .blog-post {
    padding: 28px 12px 18px 12px;
    min-width: 88vw;
  }
  .blog-post-grid, .testimonial-slider, .content-grid, .card-container, .features .feature-grid, .service-list .service-grid {
    flex-direction: column;
    gap: 17px;
  }
  .footer-nav { flex-wrap: wrap; gap: 12px; }
  .client-logos { gap: 18px; }
  .about, .about-preview, .policy { font-size: 0.96rem; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  body, html {
    font-size: 15px;
  }
  .container { padding-left: 8px; padding-right: 8px; }
  .hero h1, .hero p { text-align: center; }
  .blog-categories { gap: 10px; }
  .cookie-modal { min-width: 92vw; }
}
@media (max-width: 500px) {
  .btn-primary, .footer-cta .btn-primary, .cookie-banner button {
    padding: 10px 15px;
    font-size: 1rem;
  }
  .footer-social a img { width: 25px; height: 25px; }
  .footer-contact img { height: 16px; width: 16px; }
}
/* --- UTILITIES FOR ANIMATIONS (MICRO-INTERACTIONS) --- */
.btn-primary, .footer-cta .btn-primary, .cookie-banner button {
  transition: background .2s, transform .18s, box-shadow .2s, color .2s;
}
.feature, .service-item, .card, .blog-post, .testimonial-card {
  transition: transform .22s cubic-bezier(.6,.15,.18,.82), box-shadow .23s cubic-bezier(.57,1.29,.64,1.03);
}
.feature:hover, .service-item:hover, .card:hover, .blog-post:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.035) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(219,26,39,0.13), 0 0 0 2px var(--color-fun-blue);
  z-index: 3;
}
/* --- SCROLLBAR STYLE --- */
body::-webkit-scrollbar {
  width: 9px;
  background: #e4e7ea;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-fun-blue);
  border-radius: 8px;
}
/* --- PRINT FRIENDLY (for policies) --- */
@media print {
  header, nav, .footer-top, .footer-bottom, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  .container { max-width: 100vw !important; padding: 0 !important; }
  .policy { box-shadow: none; padding: 0; }
}
/* --- END OF CSS --- */
