/* ================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F4F7FA;
  color: #232F34;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: 0;
  transition: color 0.18s;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  box-sizing: border-box;
  border: none;
  background: none;
}
button:focus, a:focus {
  outline: 2px solid #23C48E;
  outline-offset: 2px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ================================
   Variables
   ================================ */
:root {
  --color-primary: #17618C;
  --color-secondary: #F4F7FA;
  --color-accent: #23C48E;
  --color-cta: #137455;
  --color-bg-card: #FFFFFF;
  --color-bg-section: #F4F7FA;
  --color-bg-hero: #17618C;
  --color-playful-yellow: #FFD844;
  --color-danger: #E94D52;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius: 22px;
  --shadow1: 0 2px 12px rgba(23, 97, 140, 0.08);
  --shadow2: 0 4px 30px rgba(35,196,142,0.10);
}

/* ================================
   Typography
   ================================ */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #232F34;
  background: var(--color-secondary);
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.13;
  letter-spacing: 0.01em;
  font-weight: 800;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.section h2, .section h3 {
  color: var(--color-primary);
}
p {
  font-size: 1rem;
  color: #232F34;
  margin-bottom: 16px;
}
strong, b {
  color: var(--color-cta);
}

/* Playful font accents: headings */
h1, h2 {
  letter-spacing: 0.06em;
  text-shadow: 1px 2px 0 rgba(35,196,142,0.05);
}

/* ================================
   Layout Containers
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
}
main > section {
  margin-bottom: 60px;
}

/* ================================
   Header & Navigation
   ================================ */
header {
  background: var(--color-bg-card);
  box-shadow: var(--shadow1);
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  background: none;
  color: var(--color-primary);
  padding: 7px 14px;
  border-radius: 12px;
  position: relative;
  transition: background .21s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: #fff;
  outline: none;
}
header .cta-btn {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 14px;
  padding: 0 13px;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  z-index: 102;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  transform: scale(1.1);
}

/* ================================
   Main CTAs
   ================================ */
.cta-btn {
  font-family: var(--font-display);
  background: var(--color-accent);
  color: #fff;
  border-radius: 22px;
  font-size: 1.16rem;
  font-weight: 800;
  padding: 14px 36px;
  margin-top: 6px;
  border: none;
  box-shadow: 0 4px 18px rgba(23,97,140,0.10);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.19s, transform 0.19s, box-shadow 0.19s;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-cta);
  transform: translateY(-2px) scale(1.045) rotate(-2deg);
  box-shadow: 0 6px 24px rgba(23,97,140,0.21);
  color: #fff;
}

/* ================================
   Hero Section
   ================================ */
.hero {
  background: linear-gradient(90deg, #17618C 80%, #FFD844 200%);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow2);
  display: flex;
  align-items: center;
  min-height: 270px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 270px;
}
.hero .content-wrapper {
  color: #fff;
  max-width: 500px;
  z-index: 1;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  text-shadow: 2px 3px 0 #17618C, 0 4px 26px rgba(23,97,140,0.23);
}
.hero p {
  color: #fff;
}

/* Playful decorative confetti for hero */
.hero:before, .hero:after {
  content: '';
  position: absolute;
  height: 90px;
  width: 90px;
  top: 30%;
  left: 8%;
  z-index: 0;
  background: repeating-radial-gradient(circle at 22px 36px, #FFD844 0 10px, transparent 12px 50px);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
  animation: sway1 4s infinite alternate ease-in-out;
}
.hero:after {
  left: unset;
  right: 10%;
  top: 67%;
  opacity: 0.18;
  background: repeating-radial-gradient(circle at 60px 18px, #23C48E 0 16px, transparent 18px 45px);
  animation: sway2 4.2s infinite alternate ease-in-out;
}
@keyframes sway1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(24px) scale(1.18) rotate(-6deg); }
}
@keyframes sway2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-19px) scale(0.85) rotate(7deg); }
}

/* ================================
   CARD & FEATURE GRIDS
   ================================ */
.features-grid,
.service-category-list,
.team-bio-list,
.usp-grid ul,
.service-list-short,
.faq-list,
.content-grid,
.card-container,
.case-study-snippets,
.service-detail-cards,
.testimonial-slider,
.testimonial-list,
.client-logos,
.contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
}
.features-grid > li, .service-category-list > li, .service-list-short > li, .team-bio-list > li, .testimonial-list > .testimonial-card, .testimonial-slider > .testimonial-card, .case-study-snippets > div, .service-detail-cards > div {
  margin-bottom: 20px;
}
.features-grid > li, .case-study-snippets > div, .service-detail-cards > div {
  flex: 1 1 250px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  min-width: 210px;
  position: relative;
}
.features-grid > li:hover,
.case-study-snippets > div:hover,
.service-detail-cards > div:hover {
  box-shadow: 0 8px 36px rgba(35,196,142,0.17);
  transform: translateY(-8px) scale(1.025) rotate(-2deg);
}
.features-grid img, .case-study-snippets img, .service-detail-cards img, .contact-details img {
  width: 44px;
  height: 44px;
  margin-right: 8px;
}
.features-grid div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.features-grid strong {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.team-bio-list > li {
  flex: 1 1 280px;
  background: var(--color-bg-section);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 22px 20px 14px 20px;
  font-size: 1.03rem;
  margin-bottom: 20px;
}
.team-bio-list strong {
  color: var(--color-accent);
  font-size: 1.11rem;
}

.service-list-short {
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.service-list-short > li {
  background: var(--color-playful-yellow);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 14px;
  padding: 8px 22px;
  font-size: 1.09rem;
  box-shadow: var(--shadow1);
  margin-right: 10px;
  margin-bottom: 10px;
}
.usp-grid ul {
  margin: 0;
  gap: 13px;
}
.usp-grid ul li {
  background: var(--color-bg-card);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(23, 97, 140, 0.10);
}
.case-study-snippets > div {
  min-width: 160px;
  flex: 1 1 220px;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px 22px 22px;
  min-width: 230px;
  max-width: 390px;
  box-shadow: var(--shadow2);
  font-size: 1.03rem;
  color: #232F34;
  margin-bottom: 20px;
  border-left: 7px solid var(--color-playful-yellow);
  transition: box-shadow 0.19s, border-left 0.20s;
}
.testimonial-card p {
  color: #232F34;
  margin-bottom: 0;
  font-size: 1.06rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.99rem;
  font-family: var(--font-display);
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px rgba(35,196,142,0.16);
  border-left: 7px solid var(--color-accent);
}

/* ================================
   PRICING TABLE
   ================================ */
.pricing-table {
  width: 100%;
  margin: 20px 0 14px 0;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  overflow: hidden;
  font-size: 1.01rem;
  border: 1px solid #e1ecf4;
}
.pricing-table th, .pricing-table td {
  padding: 14px 28px;
  text-align: left;
}
.pricing-table th {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
.pricing-table tr:nth-child(even) td {
  background: #F7FAFD;
}
.pricing-table tr:hover td {
  background: #e0f8f2;
}

/* ================================
   CONTACT & MAP
   ================================ */
.contact-details ul {
  flex-direction: column;
  gap: 18px;
  margin: 0;
}
.contact-details li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-details img {
  width: 26px;
  height: 26px;
}
.map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 9px 0;
}
.map img {
  width: 32px;
  height: 32px;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--color-bg-card);
  padding: 30px 0 20px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 20px rgba(23,97,140,0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 23px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.01rem;
  padding: 4px 15px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
footer address {
  font-style: normal;
  line-height: 1.7;
  font-size: 0.97rem;
  color: var(--color-primary);
}
footer address a {
  color: var(--color-cta);
  font-weight: 600;
  word-break: break-word;
}

/* ================================
   CARDS / CARD CONTAINER
   ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 28px 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover {
  transform: translateY(-5px) scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 30px rgba(35,196,142,0.10);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ================================
   FLEX UTILITY CLASSES from BRIEF
   ================================ */
.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;
}

/* ================================
   Animations & Playful Touches
   ================================ */
.cta-btn,
.card,
.hero,
.testimonial-card,
.features-grid > li,
.case-study-snippets > div {
  will-change: transform, box-shadow;
  transition: transform 0.17s cubic-bezier(0.13,0.75,0.51,1.62), box-shadow 0.17s;
}
.cta-btn:active,
.card:active,
.testimonial-card:active {
  transform: scale(0.98) rotate(0.5deg);
}

/* Button Jittery Microinteraction */
.cta-btn:hover {
  animation: btnJiggle 0.38s 1 linear;
}
@keyframes btnJiggle {
  0%   { transform: translateY(-2px) scale(1.045) rotate(-2deg); }
  18%  { transform: translateY(-2px) scale(1.06) rotate(-5deg); }
  24%  { transform: translateY(-1px) scale(1.1) rotate(3deg); }
  62%  { transform: translateY(-2px) scale(1.045) rotate(-2deg); }
  100% { transform: translateY(-2px) scale(1.045) rotate(-2deg); }
}

/* ================================
   MOBILE MENU
   ================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  z-index: 1200;
  transition: transform 0.33s cubic-bezier(.57,.21,.69,1.25);
  box-shadow: 0 8px 48px rgba(23,97,140,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-danger);
  color: #fff;
  font-size: 2.3rem;
  margin: 22px 22px 8px 0;
  border-radius: 16px;
  border: none;
  padding: 5px 18px 5px 10px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B63336;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  padding: 20px 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 900;
  color: var(--color-primary);
  padding: 14px 12px 10px 0;
  border-radius: 8px;
  transition: color 0.16s, background 0.17s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-playful-yellow);
  color: var(--color-accent);
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  width: 100vw;
  position: fixed;
  left: 0; bottom: 0;
  background: #fff;
  color: #232F34;
  box-shadow: 0 -4px 30px rgba(23,97,140,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  z-index: 2000;
  gap: 18px;
  border-top: 3px solid var(--color-accent);
  font-size: 1.04rem;
  animation: bannerAppear 0.8s both;
}
.cookie-banner p {
  flex: 1 1 200px;
  margin-bottom: 0;
  font-size: 1.01rem;
  color: #17618C;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: var(--font-display);
  padding: 10px 24px;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin: 0 2px;
  transition: background 0.17s, color 0.16s;
  box-shadow: 0 2px 10px rgba(23,97,140,0.07);
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-cta);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #BA362A;
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #10435E;
  color: #fff;
}
@keyframes bannerAppear {
  0% { opacity: 0; transform: translateY(64px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(23,97,140,0.28);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.28s;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 44px rgba(35,196,142,0.15);
  max-width: 420px;
  min-width: 280px;
  width: 92vw;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalPopIn 0.38s;
}
@keyframes modalPopIn {
  0% { opacity: 0; transform: scale(0.89) translateY(80px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 5px;
  color: var(--color-primary);
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #F4F7FA;
  border-radius: 11px;
  padding: 8px 10px 8px 10px;
}
.cookie-cat label {
  font-size: 1.02rem;
  font-family: var(--font-display);
  color: var(--color-accent);
  cursor: pointer;
}
.cookie-cat input[type="checkbox"]:disabled + label {
  color: #BBBBBB;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.7rem;
  color: var(--color-danger);
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .close-modal:hover {
  color: #111;
}

/* ================================
   MISCELLANEOUS
   ================================ */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
  align-items: center;
}
.client-logos img {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(23,97,140, 0.07);
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 28px 28px 28px 24px;
}

@media (max-width: 768px) {

  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    min-height: 190px;
    margin-bottom: 34px;
  }
  .hero .container {
    min-height: 130px;
  }
  .case-study-snippets, .features-grid, .service-detail-cards, .testimonial-slider, .testimonial-list, .client-logos, .section .card-container  {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > li, .case-study-snippets > div, .service-detail-cards > div, .team-bio-list > li {
    min-width: unset;
    width: 100%;
    padding: 18px 13px;
  }
  .content-wrapper, .text-section {
    padding: 0 3px;
  }
  .pricing-table th, .pricing-table td {
    padding: 11px 8px;
  }
  .testimonial-card {
    max-width: 100%;
    border-left: 4px solid var(--color-playful-yellow);
    padding: 13px 10px 13px 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 8px;
    font-size: .97rem;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .section, main > section {
    margin-bottom: 34px;
    padding: 26px 5px;
  }
  h1 {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.34rem;
    margin-bottom: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .usp-grid ul, .service-list-short, .content-grid, .contact-details ul {
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width:470px) {
  .testimonial-card, .features-grid > li, .case-study-snippets > div, .text-section, .card {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .cookie-modal {
    min-width: unset;
    padding: 10px 4vw 18px 4vw;
  }
}

/* ================================
   SCROLLBAR (Visibly Playful)
   ================================ */
::-webkit-scrollbar {
  width: 8px;
  background: #F7FAFF;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 15px;
}
/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) #F7FAFF;
}

/* ================================
   Playful Dynamic Decor (on brand)
   ================================ */
section {
  position: relative;
}
section .decoration-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.10;
  animation: bubblefloat 5.1s infinite alternate;
  z-index: 1;
}
@keyframes bubblefloat {
  from { transform: translateY(-4px) scale(1); }
  to   { transform: translateY(20px) scale(1.16) rotate(-6deg); }
}

/* ================================
   Accessibility & Misc
   ================================ */
:focus {
  outline: 2px solid var(--color-accent) !important;
  outline-offset: 2px;
}

/* Hide visually, but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ================================
   END OF STYLE.CSS
   ================================ */
