/* ---------------------------
   RESET & BASIC NORMALIZATION
---------------------------- */
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;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7FAFD;
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #153058;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #5d3a87;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #af81e0;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  padding: 0;
}
ul, ol {
  list-style: none;
}

/* --------------------------
   PASTEL COLORS + VARIABLES
-------------------------- */
:root {
  --color-primary: #153058;
  --color-secondary: #FFFFFF;
  --color-accent: #FFD43B; /* Brand accent (yellow) */
  --color-pastel-blue: #DDEFFA;
  --color-pastel-lavender: #EADFFD;
  --color-pastel-mint: #D2F2EB;
  --color-pastel-pink: #FDEDFC;
  --color-pastel-yellow: #FFF7D6;
  --color-grey-100: #F7FAFD;
  --color-grey-200: #EEF3F8;
  --color-grey-400: #B9C6DB;
  --color-nav-shadow: rgba(21,48,88,0.06);
  --border-radius: 18px;
  --transition: 0.22s cubic-bezier(.68, -.55, .27, 1.55);
}

/* --------------------------
  TYPOGRAPHY & HEADINGS
-------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #153058;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  color: #3b5479;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #153058;
}

/* Typography scale */
@media (min-width: 480px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.45rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3.2rem; }
}

/* -----------------------------
   LAYOUT: CONTAINER & SECTIONS
----------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.section, main > section {
  background: var(--color-grey-100);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 24px 0 rgba(153,99,255,0.045), 0 1.5px 7.5px 0 rgba(21,48,88,.04);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section, main > section {
    padding: 22px 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-pastel-blue);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(21,48,88,0.07);
  padding: 24px 20px;
  transition: box-shadow .18s, transform var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 100%;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(21,48,88,0.10), 0 1.5px 8px 0 rgba(153,99,255,0.05);
  transform: translateY(-5px) scale(1.018);
}

.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: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid, .card-container {
    flex-direction: column;
  }
}

/* ----------------------
    HEADER & NAVIGATION
----------------------- */
header {
  background: linear-gradient(90deg, #FDEDFC 0%, #EEF3F8 100%);
  width: 100%;
  box-shadow: 0 1.5px 12px var(--color-nav-shadow);
  z-index: 30;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #4d3b61;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s, color .15s;
  position: relative;
}
.main-nav a.primary-cta {
  background: linear-gradient(90deg, #FFD43B 30%, #FDEDFC 100%);
  color: #153058;
  font-weight: 700;
  box-shadow: 0 2.5px 10px 0 rgba(255, 212, 59, 0.10);
  border-radius: 18px;
  margin-left: 8px;
  padding: 9px 22px;
  transition: background .15s, color .15s, box-shadow .2s;
  letter-spacing: 0.03em;
}
.main-nav a.primary-cta:hover, .main-nav a.primary-cta:focus {
  background: #ffe75e;
  color: #153058;
  box-shadow: 0 5px 20px 0 rgba(255, 212, 59, 0.23);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-pastel-blue);
  color: #7153b4;
}
.main-nav img {
  height: 38px;
  margin-right: 16px;
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
    padding: 16px 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-pastel-lavender);
  color: #7153b4;
  border-radius: 50%;
  font-size: 1.8rem;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 111;
  transition: background var(--transition);
  box-shadow: 0 2px 8px 0 rgba(153,99,255, .08);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-pastel-mint);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #EADFFD 0%, #D2F2EB 100%);
  box-shadow: 0 6px 28px 0 rgba(153,99,255,0.13);
  z-index: 1500;
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.73,.12,.28,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 60px 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-pastel-pink);
  color: #a55ab0;
  border-radius: 50%;
  font-size: 2rem;
  margin: 16px 18px 0 0;
  padding: 9px 15px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(173,90,176,0.12);
  cursor: pointer;
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-pastel-yellow);
  color: #FFD43B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 32px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #3b5479;
  background: transparent;
  border-radius: 12px;
  min-width: 200px;
  padding: 10px 8px;
  margin: 0 0 2px 0;
  transition: background .14s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-pastel-mint);
  color: #00ae9a;
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Fade overlay if desired (optional) */
.mobile-menu::before {
  content: '';
  display: none;
}

/* -------- HERO SECTION ------ */
.hero {
  background: linear-gradient(90deg, #eef3f8 60%, #FDEDFC 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  padding: 32px 0 0 0;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 2px 20px 0 rgba(173,90,176,0.027);
}
.hero .container {
  min-height: 220px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  gap: 17px;
  max-width: 660px;
  align-items: flex-start;
}
.hero h1 {
  color: #576289;
  font-size: 2.2rem;
}
.hero p {
  color: #5d648a;
  font-size: 1.12rem;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 12px;
    min-height: unset;
    border-radius: 0 0 24px 24px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* CTA Section Styles */
.cta {
  background: linear-gradient(90deg, #D2F2EB 0%, #FDEDFC 100%);
  margin-bottom: 60px;
  padding: 48px 0;
  border-radius: 28px;
  box-shadow: 0 10px 40px 0 rgba(153,99,255,0.045);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
}
.cta h2, .cta h1 {
  color: #153058;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.cta p {
  color: #427364;
  font-size: 1.1rem;
}
.cta .primary-cta {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .cta {
    padding: 27px 0 28px 0;
    border-radius: 14px;
  }
}

/* Feature Sections, Lists, Offerings */
ul li, ol li {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1rem;
  color: #4764a2;
  display: flex;
  align-items: center;
  gap: 12px;
}
ul li img, ol li img {
  height: 22px;
  width: 22px;
  margin-right: 3px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-pastel-mint);
  border-radius: var(--border-radius);
  padding: 24px 18px;
  box-shadow: 0 1px 5px 0 rgba(21,48,88,0.06);
}

/* ------------ CARDS ------------ */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-article {
  background: var(--color-pastel-pink);
  border-radius: var(--border-radius);
  padding: 26px 20px 20px 20px;
  box-shadow: 0 2px 10px 0 rgba(245,130,192,0.07);
  min-width: 240px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform var(--transition);
}
.blog-article h3 {
  margin-bottom: 8px;
  color: #9861ae;
  font-size: 1.14rem;
  font-family: 'Montserrat', sans-serif;
}
.blog-article a {
  color: #7153b4;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
  transition: color .2s;
}
.blog-article:hover, .blog-article:focus {
  box-shadow: 0 8px 28px 0 rgba(245,130,192,0.13);
  transform: translateY(-4px) scale(1.012);
}

/* --------- TESTIMONIALS --------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--color-pastel-yellow);
  margin-bottom: 24px;
  box-shadow: 0 2px 11px 0 rgba(180,152,74,0.08);
  position: relative;
  max-width: 680px;
  border-left: 6px solid #FFD43B;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #153058;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #8e6e2b;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.testimonial-card .star-rating {
  color: #FFD43B;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  margin-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 15px 12px;
    border-radius: 11px;
  }
}

/* ----------- BUTTONS ----------- */
.primary-cta,
.cta-block .primary-cta,
button.cta, .cookie-banner button {
  background: linear-gradient(90deg,#FFD43B 60%,#FDEDFC 100%);
  color: #153058;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 36px;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(255,180,59,0.11);
  margin: 12px 0 0 0;
  cursor: pointer;
  transition: box-shadow .18s, background .17s, color .13s, transform var(--transition);
  outline: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #ffe75e;
  transform: translateY(-2px) scale(1.022);
  box-shadow: 0 6px 24px 0 rgba(255,212,59,0.29);
  color: #2A3B57;
}
button.cta {
  background: linear-gradient(90deg,#D2F2EB 35%,#FFD43B 100%);
  color: #426256;
  padding: 12px 26px;
  font-weight: 600;
}
button.cta:hover, button.cta:focus {
  background: #D2F2EB;
  color: #12856E;
}

/* Text/Link Buttons */
button.text-btn {
  background: transparent;
  color: #7153b4;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 7px;
  transition: background .14s, color .15s;
}
button.text-btn:hover {
  background: var(--color-pastel-lavender);
  color: #8e86b9;
}

/* --------------- FOOTER ------------- */
footer {
  background: linear-gradient(90deg, #EADFFD 10%, #D2F2EB 100%);
  border-radius: 38px 38px 0 0;
  margin-top: 64px;
  padding: 38px 0 8px 0;
  box-shadow: 0 -2px 20px 0 rgba(153,99,255,0.04);
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #4b3971;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .12s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-pastel-blue);
  color: #7153b4;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #153058;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-contact p {
  margin-bottom: 4px;
}

/* ---------- CONTACT TEASERS/SNIPPETS ------------ */
.contact-snippet, .contact-teaser {
  background: var(--color-pastel-lavender);
  border-radius: 13px;
  box-shadow: 0 1.2px 6.5px 0 rgba(173,90,176,0.07);
  padding: 15px 20px 14px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  color: #6b4a97;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-snippet img, .contact-teaser img {
  vertical-align: middle;
  margin-right: 7px;
  height: 18px;
  width: 18px;
}
@media (max-width: 600px) {
  .contact-snippet, .contact-teaser {
    flex-direction: column;
    align-items: flex-start;
    padding: 9px 7px 9px 7px;
    gap: 6px;
  }
}

.contact-details {
  background: var(--color-pastel-mint);
  border-radius: 13px;
  padding: 18px 17px 12px 17px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0.6px 9px 0 rgba(21,48,88,0.06);
}
.contact-details img {
  margin-right: 8px;
  height: 19px;
  width: 19px;
  vertical-align: middle;
}
.contact-details a {
  color: #7153b4;
  font-weight: 600;
  transition: color .16s;
}
.contact-details a:hover, .contact-details a:focus {
  color: #00ae9a;
}

.cta-block {
  margin-top: 30px;
  background: var(--color-pastel-yellow);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 1.1px 4px 0 rgba(255, 212, 59, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

/* --------------- LEGAL SECTIONS ----------- */
.footerlegal {
  background: var(--color-grey-100);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(173,90,176,0.04);
  display: flex;
  flex-direction: column;
}
.footerlegal .content-wrapper {
  align-items: flex-start;
  gap: 15px;
}
.footerlegal ul li {
  color: #5d3a87;
}

/* --------------- COOKIE BANNER -------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#FDEDFC 10%,#EADFFD 100%);
  box-shadow: 0 -3px 18px 0 rgba(153,99,255,0.09);
  z-index: 2222;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 21px 5vw 23px 5vw;
  gap: 18px;
  border-radius: 19px 19px 0 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #5d3a87;
  transition: transform .46s cubic-bezier(.77,.12,.28,.96), opacity .32s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner__text {
  max-width: 570px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  background: #ffd43b;
  color: #153058;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  padding: 10px 19px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(255, 212, 59, 0.08);
  transition: background .16s, transform .17s;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-pastel-blue);
  color: #3b5479;
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-pastel-pink);
  color: #ae347f;
}
.cookie-banner button:hover,
.cookie-banner button:focus,
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #ffe75e;
  transform: translateY(-2px) scale(1.04);
  color: #153058;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 17px 16px 22px 16px;
    font-size: 0.94rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,48,88,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .32s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__window {
  background: linear-gradient(110deg,#EADFFD 65%,#D2F2EB 100%);
  border-radius: 22px;
  min-width: 320px;
  max-width: 420px;
  padding: 36px 30px 25px 30px;
  box-shadow: 0 18px 80px 0 rgba(153,99,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #7153b4;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal__close {
  position: absolute;
  top: 22px; right: 26px;
  background: var(--color-pastel-yellow);
  color: #cf9d18;
  font-size: 1.4rem;
  border: none;
  border-radius: 50%;
  padding: 9px 13px;
  transition: background .13s, color .13s;
  cursor: pointer;
}
.cookie-modal__close:hover {
  background: #ffd43b;
  color: #7153b4;
}
.cookie-modal__content {
  font-size: 1rem;
  color: #4d3a87;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1em;
  color: #6b4a97;
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  accent-color: #7153b4;
  width: 17px;
  height: 17px;
  margin-right: 4px;
}
.cookie-category.cookie-essential label {
  color: #a2a8b3;
}
.cookie-category.cookie-essential input[type=checkbox] {
  accent-color: #bcbcbc;
}
.cookie-modal__actions {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}
.cookie-modal__actions button {
  background: #ffd43b;
  color: #153058;
  padding: 9px 22px;
  border-radius: 13px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal__actions button:hover {
  background: #ffe75e;
}

/* ----------------- FORM STYLES (Contact, Forms) ------------------ */
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 11px 14px;
  border: 1.6px solid var(--color-pastel-lavender);
  border-radius: 13px;
  background: #fff;
  margin-bottom: 18px;
  color: #153058;
  width: 100%;
  transition: border-color .16s;
}
input:focus, textarea:focus {
  border-color: #ffd43b;
  outline: none;
}
label {
  color: #7153b4;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  display: inline-block;
}

/* --------------- ADDRESS --------------- */
address {
  font-style: normal;
  color: #426256;
  font-size: 1.02rem;
  margin-bottom: 0.6em;
  margin-top: 7px;
}

/* --------------- BLOCKQUOTE (ZITATE, BLOG) --------------- */
blockquote {
  background: var(--color-pastel-lavender);
  border-left: 5px solid #7153b4;
  padding: 22px 27px;
  border-radius: 17px;
  color: #5d3a87;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 22px 0;
}

/* -------------- Responsive Layouts -------------- */
@media (max-width: 900px) {
  .container {
    padding: 0 5vw;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .section, main>section {
    margin-bottom: 36px;
    padding: 13px 5px 21px 5px;
    border-radius: 12px;
  }
  .card {
    padding: 17px 9px;
    min-width: unset;
    border-radius: 11px;
  }
}

/* -------------- MICRO-INTERACTIONS & TRANSITIONS -------------- */
*, *:before, *:after {
  transition-property: background, color, box-shadow, border, transform;
  -webkit-tap-highlight-color: rgba(153, 99, 255, 0.04);
}

/* -------------- VISUAL HIERARCHY: Spacing & Separation -------------- */
.section > *,
.content-wrapper > *,
.card > *,
.feature-item > * {
  margin-bottom: 0.5em;
}
.section > *:last-child, .content-wrapper > *:last-child, .card > *:last-child, .feature-item > *:last-child {
  margin-bottom: 0;
}

/* ----------- UTILITY & FLEX --------- */
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

/* -------------- OVERRIDE ABSOLUTE-POSITIONED DECORATIVE -------------- */
.card .decorative, .section .decorative {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* Ensure no cards/text overlap */
.card, .blog-article, .testimonial-card, .feature-item {
  margin-right: 0;
  margin-left: 0;
}

/* ------------------- Z-INDEX SAFETY -------------------- */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 1000; }

/* -------------- MODERN SOFT PASTEL SHADOWS ------------- */
.card, .feature-item, .blog-article, .section, .footerlegal, .testimonial-card {
  box-shadow: 0 2px 14px 0 rgba(153,99,255,0.07), 0 1.5px 7.5px 0 rgba(21,48,88,0.04);
}

/* -------------- CUSTOM FONT IMPORT (Fallback explained) ------------- */
@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,700&display=swap');

/* ---------------- SOFT FOCUS ACCESSIBILITY -------------- */
a:focus, button:focus, input:focus, textarea:focus, .primary-cta:focus {
  outline: 2.5px solid #FFD43B;
  outline-offset: 2.5px;
  box-shadow: 0 0 0 2px #FFF7D6;
  z-index: 23;
}

/* Hide visually but accessible: for future a11y */
.visually-hidden { position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden; }

/* Hide default number arrows on number inputs if any */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* Progress bar/pagination etc. (future-proof placeholder) */
.progress-bar {
  background: linear-gradient(90deg,#7153b4 40%,#ffd43b 100%);
  height: 9px;
  border-radius: 6px;
  margin: 11px 0 12px 0;
  box-shadow: 0 1px 5px 0 rgba(153,99,255,.07);
}

/* ------------------- END OF STYLE.CSS ------------------- */
