/* === Shine Scholars - Playful Dynamic CSS === */
/* 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.5;
  background: #F5F7FA;
  color: #283E54;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}

/* === BRAND VARIABLES === */
:root {
  --ss-color-primary: #283E54;
  --ss-color-secondary: #7FB069;
  --ss-color-accent: #F5F7FA;
  --ss-color-accent-strong: #FFD500;
  --ss-color-danger: #FF6464;
  --ss-color-info: #24ADF2;
  --ss-color-card-bg: #FFFFFF;
  --ss-color-shadow: 0 6px 24px 0 rgba(40,62,84,0.08);
  --ss-radius-lg: 24px;
  --ss-radius-md: 16px;
  --ss-radius-sm: 8px;
  --ss-font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --ss-font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ss-font-display);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ss-color-primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: floatUp .7s cubic-bezier(.7,1.5,.3,1) 50ms both;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li {
  font-family: var(--ss-font-body);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--ss-color-primary);
}
strong {
  font-weight: bold;
  color: var(--ss-color-secondary);
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

a {
  color: var(--ss-color-info);
  text-decoration: none;
  transition: color .18s cubic-bezier(.5,1.6,.3,1);
}
a:hover, a:focus {
  color: var(--ss-color-secondary);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

/* === HEADER & NAVIGATION === */
header {
  background: var(--ss-color-accent);
  box-shadow: 0 3px 18px rgba(40, 62, 84, 0.08);
  padding: 0 0 0 0;
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 20px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: var(--ss-font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .01em;
  padding: 8px 12px;
  border-radius: var(--ss-radius-sm);
  transition: background 0.18s, color 0.18s;
}
header nav a:hover:not(.button-primary) {
  background: var(--ss-color-secondary);
  color: #fff;
}
.button-primary {
  background: var(--ss-color-secondary);
  color: #fff !important;
  border: none;
  padding: 10px 28px;
  border-radius: var(--ss-radius-md);
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 20px 0 rgba(127,176,105,0.13);
  cursor: pointer;
  margin-left: 5px;
  transition: box-shadow .2s, background .18s, transform .16s;
}
.button-primary:hover, .button-primary:focus {
  background: var(--ss-color-primary);
  color: #fff !important;
  box-shadow: 0 10px 28px 0 rgba(40,62,84,0.19);
  transform: translateY(-2px) scale(1.045) rotate(-1deg);
}
.button-secondary {
  background: #fff;
  color: var(--ss-color-secondary) !important;
  border: 2px solid var(--ss-color-secondary);
  padding: 10px 24px;
  border-radius: var(--ss-radius-lg);
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .025em;
  box-shadow: 0 4px 14px 0 rgba(127,176,105,0.05);
  cursor: pointer;
  margin-left: 5px;
  transition: box-shadow .16s, border .15s, color .17s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--ss-color-secondary);
  color: #fff !important;
  border: 2px solid var(--ss-color-secondary);
  box-shadow: 0 8px 20px 0 rgba(127,176,105,0.15);
  transform: translateY(-1px) scale(1.035);
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ss-color-primary);
  padding: 8px 16px;
  z-index: 120;
  border-radius: 40px;
  transition: background .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f0f3fc;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 32px 28px 24px 32px;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.89, -0.32, .24, 1.3);
  box-shadow: 3px 0 40px 0 rgba(40,62,84,0.16); /* playful drop */
  /* Hidden by default, add .is-open class via JS to open */
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--ss-color-danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 8px 14px;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(40,62,84,0.12);
  transition: background .14s;
  z-index: 210;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: var(--ss-color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--ss-font-display);
  font-size: 1.2rem;
  color: var(--ss-color-primary);
  background: none;
  padding: 10px 0 10px 2px;
  border-radius: var(--ss-radius-md);
  font-weight: 600;
  transition: background .13s, color .13s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--ss-color-secondary);
  color: #fff;
}
.mobile-nav .button-primary {
  width: 100%;
  margin: 0 0 10px 0;
}


@media (max-width: 1100px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* SHOW/HIDE DESKTOP NAV */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    z-index: 130;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTIONS (catchy playfulness) === */
.hero-section, .about-hero-section, .courses-hero-section, .workshops-hero-section, .blog-hero-section, .faqs-hero-section, .kontakt-hero-section, .thank-you-section {
  padding: 80px 0 60px 0;
  margin-bottom: 60px;
  background: linear-gradient(92deg, #FFD500 0%, #7FB069 98%);
  box-shadow: 0 12px 38px 0 rgba(127,176,105,0.10);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
  /* playful wiggle anim on background */
  animation: heroBgSwing 7s ease-in-out infinite alternate;
}
.hero-section h1, .about-hero-section h1, .courses-hero-section h1, .workshops-hero-section h1, .blog-hero-section h1, .faqs-hero-section h1,.kontakt-hero-section h1, .thank-you-section h1 {
  color: var(--ss-color-primary);
  font-family: var(--ss-font-display);
  font-size: 2.4rem;
  margin-bottom: 12px;
  animation: floatUp .8s cubic-bezier(.13,1.1,.72,1.03) 65ms both;
}
.hero-section p, .about-hero-section p, .courses-hero-section p,.workshops-hero-section p, .blog-hero-section p,.faqs-hero-section p,.kontakt-hero-section p, .thank-you-section p {
  color: var(--ss-color-primary);
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.hero-section .button-primary, .about-hero-section .button-primary, .thank-you-section .button-primary {
  margin-top: 12px;
  box-shadow: 0 8px 24px 0 rgba(40,62,84,0.13);
}

@keyframes heroBgSwing {
  0% {background-position: 0 0;}
  95% {background-position: 100vw 18px;}
  100% {background-position: 120vw -3vw;}
}
@keyframes floatUp {
  from {opacity:0; transform:translateY(40px) scale(.97) rotate(-2deg);}
  to {opacity:1; transform:translateY(0) scale(1) rotate(0deg);}
}

/* === FEATURE GRIDS === */
.features-section, .courses-overview-section, .blog-posts-grid-section, .workshop-list,.team-section, .features-grid, .courses-grid, .posts-grid, .team-grid {
  margin-bottom: 60px;
}
.features-grid, .courses-grid, .workshop-list, .posts-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
  width: 100%;
}
.features-grid > div, .team-bio-card, .course-card, .workshop-list > div, .blog-post-preview {
  background: var(--ss-color-card-bg);
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-color-shadow);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  padding: 32px 22px 22px 22px;
  transition: box-shadow .22s, transform .18s;
  margin-bottom: 20px;
  position: relative;
  overflow: visible;
  z-index: 1;
  animation: cardPop .66s cubic-bezier(.44,1.7,.4,1.03) both;
}
.features-grid > div:hover, .team-bio-card:hover, .course-card:hover, .workshop-list > div:hover, .blog-post-preview:hover {
  box-shadow: 0 12px 48px 0 rgba(40,62,84,0.14);
  transform: translateY(-5px) scale(1.035) rotate(-2.5deg);
  z-index: 4;
}
@keyframes cardPop {
  from {opacity:0; transform:translateY(40px) scale(.94) rotate(2deg);}
  to {opacity:1; transform:translateY(0) scale(1) rotate(0deg);}
}
.features-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 10px #FFD50060);
  animation: iconPulse 2s infinite alternate ease-in-out;
}
@keyframes iconPulse {
  0% {transform: scale(1) rotate(-2deg);}
  100% {transform: scale(1.09) rotate(6deg);}
}

.team-bio-card h3, .course-card h3, .blog-post-preview h3, .workshop-list > div h3 {
  font-family: var(--ss-font-display);
  color: var(--ss-color-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: #fffbe7;
  border-radius: var(--ss-radius-lg);
  margin-bottom: 60px;
  padding: 40px  15px;
}
.testimonials-section h2 {
  color: var(--ss-color-primary);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 18px 30px;
  background: #fff;
  border-radius: var(--ss-radius-lg);
  box-shadow: 0 2px 24px 0 rgba(127,176,105,0.11);
  margin-bottom: 24px;
  margin-right: 0;
  max-width: 700px;
  width: 100%;
  transition: box-shadow .21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,62,84,0.17);
}
.testimonial-card blockquote {
  font-family: var(--ss-font-display);
  font-size: 1.12rem;
  color: var(--ss-color-primary);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.48;
  letter-spacing: -.01em;
}
.testimonial-meta {
  font-size: .98rem;
  color: #987B53;
  font-family: var(--ss-font-body);
  font-style: italic;
  margin-left: 14px;
}

/* === CARD CONTAINERS === */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: var(--ss-color-card-bg);
  border-radius: var(--ss-radius-md);
  box-shadow: var(--ss-color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 16px 18px 16px;
  min-width: 210px;
  flex: 1 1 210px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === TIMELINE, FILTERS, ACCORDIONS === */
.timeline {
  list-style: none;
}
.timeline li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.03rem;
}
.timeline li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ss-color-secondary);
  position: absolute;
  top: 7px; left: 0;
}
.filter-options span, .kategorien-filter span {
  display: inline-block;
  background: var(--ss-color-accent-strong);
  color: var(--ss-color-primary);
  border-radius: var(--ss-radius-sm);
  font-size: .97rem;
  padding: 3px 11px;
  font-family: var(--ss-font-display);
  margin: 0 2px 4px 2px;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.filter-options span:hover, .kategorien-filter span:hover {
  background: var(--ss-color-secondary);
  color: #fff;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.faq-accordion h3 {
  background: var(--ss-color-secondary);
  color: #fff;
  border-radius: var(--ss-radius-md) var(--ss-radius-md) 0 0;
  padding: 10px 16px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.1rem;
}
.faq-accordion > div {
  background: #fff;
  padding: 16px;
  border-radius: 0 0 var(--ss-radius-md) var(--ss-radius-md);
  box-shadow: 0 2px 14px 0 rgba(40,62,84,0.07);
  margin-bottom: 10px;
  transition: max-height .34s;
}

/* === CONTACT SECTION === */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.contact-details img {
  width: 25px;
  height: 25px;
}
.contact-cta {
  background: #fffbe7;
  border-radius: var(--ss-radius-md);
  padding: 16px 20px;
  box-shadow: 0 1px 8px 0 rgba(127,176,105,.07);
}

/* === FOOTER === */
footer {
  background: var(--ss-color-accent);
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand img {
  width: 60px;
  margin-bottom: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--ss-color-primary);
  font-size: 1rem;
  font-family: var(--ss-font-display);
  transition: color .14s;
}
.footer-nav a:hover {
  color: var(--ss-color-secondary);
}
.footer-contact p {
  font-size: .99rem;
  opacity: .82;
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--ss-color-info);
  transition: color .12s;
  font-size:1rem;
}
.footer-contact a:hover {
  color: var(--ss-color-secondary);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  width: 100vw;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -6px 38px 0 rgba(127,176,105,0.08);
  padding: 24px 24px 20px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: cookiePop .66s;
}
@keyframes cookiePop {
  0% {transform:translateY(100px) scale(.95); opacity:0;}
  80% {opacity:.92;}
  100% {transform:translateY(0) scale(1);opacity:1;}
}
.cookie-banner p {
  color: var(--ss-color-primary);
  font-size: 1.03rem;
  text-align: center;
  margin-bottom: 10px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cookie-actions button {
  background: var(--ss-color-secondary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: var(--ss-font-display);
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 12px #7FB06930;
  transition: background .12s, color .12s, transform .13s;
}
.cookie-actions button.reject {
  background: var(--ss-color-danger);
}
.cookie-actions button.settings {
  background: #FFD500;
  color: var(--ss-color-primary);
}
.cookie-actions button:hover,
.cookie-actions button:focus {
  background: var(--ss-color-primary);
  color: #fff;
  transform: scale(1.03);
}
.cookie-actions button.settings:hover {background: var(--ss-color-secondary); color: #fff;}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(40,62,84,.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .31s;
}
@keyframes fadeIn {
  from{opacity:0;}to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  border-radius: var(--ss-radius-lg);
  max-width: 430px;
  width: 94vw;
  padding: 36px 26px 24px 26px;
  box-shadow: 0 4px 32px 0 rgba(40,62,84,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: cookiePop .44s;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 8px;
  color: var(--ss-color-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  font-family: var(--ss-font-body);
  margin-bottom: 8px;
}
.cookie-toggle {
  width: 46px;
  height: 26px;
  border-radius: 16px;
  background: #eaeaea;
  position: relative;
  cursor: pointer;
  margin: 0 6px;
  transition: background .14s;
}
.cookie-toggle[data-on="true"] {
  background: var(--ss-color-secondary);
}
.cookie-toggle .toggle-dot {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(127,176,105,0.10);
  transition: left .19s;
}
.cookie-toggle[data-on="true"] .toggle-dot {
  left: 23px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  padding: 8px 20px;
  border-radius: 20px;
  background: var(--ss-color-secondary);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-family: var(--ss-font-display);
  font-weight: 500;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: var(--ss-color-primary);
}
.cookie-modal .close-modal {
  background: transparent;
  color: #bdbdbd;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 18px; right: 18px;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .close-modal:hover {color: var(--ss-color-danger);}

/* === RESPONSIVE & MOBILE-FIRST === */
@media (max-width: 768px) {
  /* Layout shifts to columns + smaller paddings */
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper, .features-grid, .courses-grid,
  .workshop-list, .posts-grid,
  .team-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    max-width: 98vw;
    padding: 18px 10px 18px 10px;
  }
  .hero-section, .about-hero-section, .courses-hero-section, .workshops-hero-section, .blog-hero-section, .faqs-hero-section, .kontakt-hero-section, .thank-you-section {
    padding: 56px 0 35px 0;
    border-radius: 0 0 22px 22px;
  }
  .features-grid > div, .team-bio-card, .course-card, .workshop-list > div, .posts-grid > div,.blog-post-preview {
    min-width: 90vw;
    max-width: 100vw;
    padding: 26px 12px 16px 12px;
  }
  .footer-brand img {
    width: 44px;
    margin-bottom: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.28rem;}
  h3 {font-size: 1.13rem;}
  .container {padding-left:3vw;padding-right:3vw;}
}

/* === FUN MICROINTERACTIONS/ANIMATION CLASSES === */
.bounce {
  animation: bounceMe .26s cubic-bezier(.73, 1.1, .72, 1.01) alternate 1;
}
@keyframes bounceMe {
  0% {transform: scale(1) rotate(0deg);}
  60%{transform: scale(1.06) rotate(2deg);}
  100% {transform: scale(0.97) rotate(-2.5deg);}
}
.shake {
  animation: shakeMe 0.35s cubic-bezier(.62,1.8,.44,1) 1;
}
@keyframes shakeMe {
  10% { transform: translateX(-2px) rotate(-1deg); }
  20% { transform: translateX(3px) rotate(1.5deg); }
  30% { transform: translateX(-3px) rotate(-2deg); }
  40% { transform: translateX(2px) rotate(1deg); }
  50% { transform: translateX(-1px) rotate(0deg); }
  60% { transform: translateX(1px) rotate(-1deg); }
  70% { transform: translateX(0px) rotate(0.3deg); }
}

/* === UTILITIES: SPACING & FLEX PATTERNS === */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}

/* === OVERRIDE INPUT, FORMS, SCROLLBAR FOR MODERN LOOK === */
input, select, textarea {
  font-family: var(--ss-font-body);
  font-size: 1em;
  padding: 10px;
  border-radius: var(--ss-radius-sm);
  border: 2px solid #e4ecef;
  outline: none;
  margin-bottom: 16px;
  transition: border .14s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--ss-color-secondary);
}
::-webkit-scrollbar {width: 8px;background: #f7fafc;}
::-webkit-scrollbar-thumb {background: #e3e9ee; border-radius: 7px;}

/* === ACCESSIBILITY: HIGH CONTRAST WHERE NEEDED === */
.testimonial-card blockquote,
.testimonial-card .testimonial-meta {
  color: #283E54 !important;
  background: none !important;
}
.testimonial-card {
  background: #fff;
  color: #283E54;
}

/* === PRINT OPTIMIZATION === */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display:none!important;}
  main {margin:0;padding:0;}
  body {background: #fff !important; color: #000;}
}
