/* ===============================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #1d2541;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

/* ===============================
   BRAND & CREATIVE ARTISTIC VIBES
   =============================== */
:root {
  --primary: #183153;
  --secondary: #58A4B0;
  --accent: #F4EBDB;
  --creative-orange: #FFA500;
  --creative-green: #3ED67F;
  --creative-pink: #EB4E7A;
  --creative-purple: #8747C3;
  --creative-gradient1: #F4EBDB 0%, #FFD6E0 80%, #DAEAF6 100%;
  --radius-lg: 30px;
  --radius-sm: 12px;
  --shadow-card: 0 4px 16px rgba(24,49,83,0.11);
  --shadow-art: 0 3px 12px rgba(88,164,176,0.18);
  --transition-fast: 0.18s cubic-bezier(.7,.3,.3,1);
  --font-display: 'Noto Sans', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* Artistic font-families for h1/h2/h3 */
h1, h2, h3, .hero-title {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0px 2px 8px rgba(244,235,219,0.21), 2px 2px 0px var(--creative-orange);
}
h2 {
  font-size: 1.6rem;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
h3 {
  font-size: 1.18rem;
  font-weight: bold;
  color: var(--creative-purple);
  margin-bottom: 10px;
}

p, li, span {
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--creative-green);
}

/* VIBRANT SECTIONS & LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-art);
  position: relative;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* ================================
   HEADER & NAVIGATION (desktop)
   ================================ */
header {
  width: 100%;
  background: linear-gradient(99deg, var(--accent) 60%, #fff 100%);
  box-shadow: 0 2px 14px 0 rgba(24,49,83,0.09);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 34px;
  z-index: 101;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-left: 32px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(88, 164, 176, 0.08);
}

header .btn-primary {
  margin-left: auto;
}

header img[alt="Vivid Exploration"] {
  max-height: 38px;
  padding: 8px 0 8px 0;
  margin-right: 8px;
}

/* ===============================
   MOBILE NAVIGATION
   =============================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  top: 16px;
  z-index: 130;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 8px rgba(24,49,83,0.12);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--creative-pink);
  box-shadow: 0 4px 16px rgba(88,164,176,0.24);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,83,0.94);
  transform: translateX(-102vw);
  transition: transform 0.35s cubic-bezier(.62,.01,.26,1.01);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 48px 28px 32px 28px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-bottom: 36px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(244,235,219,0.18);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-menu-close:hover {
  background: var(--creative-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: #fff;
  padding: 12px 0 12px 10px;
  margin: 0;
  border-radius: var(--radius-sm);
  background: none;
  transition: color var(--transition-fast), background var(--transition-fast);
  display: block;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--creative-orange);
  background: rgba(244,235,219,0.14);
}

@media (max-width: 1099px) {
  header .container {
    gap: 16px;
  }
  header nav {
    gap: 18px;
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  header .btn-primary {
    font-size: 1rem;
    padding: 12px 14px;
  }
  header .container {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 64px;
  }
  header nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ===============================
   BUTTONS & MICRO-INTERACTIONS
   =============================== */
.btn-primary {
  background: linear-gradient(95deg, var(--secondary) 60%, var(--creative-orange) 95%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 34px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 16px rgba(58,154,149,0.16);
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  margin-top: 18px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(99deg, var(--creative-orange) 40%, var(--secondary) 90%);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(88,164,176,0.22);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary:disabled {
  background: #b4bbc8 !important;
  color: #fff !important;
  cursor: not-allowed;
}

/* ===============================
   HERO & ARTISTIC-INSPIRED ELEMENTS
   =============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(110deg, var(--accent) 70%, #fff 120%);
  border-radius: var(--radius-lg);
}
.hero-title, section .container > .content-wrapper > h1 {
  font-size: 2.7rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--creative-pink);
  text-shadow: 3px 6px 0 var(--accent), 0 4px 30px rgba(232,117,188,0.13);
}

/* Decorative shapes for artistic feel */
.section:before {
  content: '';
  position: absolute;
  top: -40px;
  right: 40px;
  width: 90px;
  height: 44px;
  background: linear-gradient(120deg, var(--creative-purple), var(--creative-green));
  opacity: 0.18;
  filter: blur(8px);
  border-radius: 43px 40px 38px 40px;
  z-index: 1;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  left: -28px;
  bottom: -32px;
  width: 62px;
  height: 35px;
  background: var(--creative-orange);
  opacity: 0.15;
  border-radius: 33px 28px 27px 23px;
  z-index: 1;
  filter: blur(3px);
  pointer-events: none;
}

/* Artistic accent line under h2 */
h2 {
  position: relative;
  padding-bottom: 6px;
}
h2:after {
  content: '';
  display: block;
  margin-top: 7px;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg,var(--creative-pink) 30%,var(--secondary) 100%);
  opacity: 0.82;
}

/* ===============================
   CARD-BASED & FLEX LAYOUTS
   =============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 22px;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.card:hover {
  box-shadow: 0 7px 30px 0 rgba(232,136,188,0.10), 0 2px 6px rgba(24,49,83,0.12);
  transform: translateY(-3px) scale(1.025) rotate(-0.8deg);
}
.card img {
  margin-bottom: 15px;
  border-radius: 12px;
}
.card h3 {
  color: var(--creative-pink);
}

.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 grid style for creative look */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 20px;
  width: 100%;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 9px rgba(24,49,83,0.08), 0 2px 8px rgba(88,164,176,0.12);
  padding: 22px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  z-index: 3;
}
.feature-grid > div:hover {
  box-shadow: 0 3px 17px 0 rgba(88,164,176,0.17), 0 2px 7px rgba(232,136,188,0.07);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  margin-top: -8px;
  filter: drop-shadow(0 1px 0 var(--creative-orange));
}

.news-teaser {
  border-bottom: 3px solid var(--creative-orange);
  background: #fffdfa;
  padding: 14px 14px 18px 14px;
  border-radius: 0px 0px 22px 22px;
  box-shadow: 0 2px 8px rgba(232,136,188,0.09);
  margin-bottom: 0 !important;
  position: relative;
}

.tag, .news-teaser .tag {
  display: inline-block;
  font-size: 0.84rem;
  color: var(--creative-purple);
  background: #ede8f5;
  border-radius: 38px;
  padding: 3px 19px 4px 13px;
  margin-bottom: 8px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF;
  border-left: 7px solid var(--creative-pink);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 18px 0 rgba(24,49,83,0.075);
  font-size: 1.03rem;
  max-width: 710px;
  color: #21243b;
  transition: box-shadow var(--transition-fast), border-color 0.23s cubic-bezier(.7,.6,.2,1);
}
.testimonial-card:hover {
  border-left: 7px solid var(--creative-green);
  box-shadow: 0 7px 23px rgba(58,154,149,0.12) !important;
}
.testimonial-card strong {
  color: var(--creative-purple);
  font-weight: bold;
}
.testimonial-card p {
  color: var(--primary);
}
.testimonial-card > div {
  font-size: 1rem;
  color: var(--creative-pink);
}
.testimonial-card :is(strong, span) {
  letter-spacing: 0.02em;
}

/* ===============================
   LAYOUTS & SPACING (MANDATORY)
   =============================== */
.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; }

/* Content block paddings and spacing */
.content-wrapper > * + * {
  margin-top: 15px;
}
ul, ol {
  margin: 0 0 18px 26px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  line-height: 1.75;
  color: var(--primary);
}
ul li::before {
  content: '\2022';
  color: var(--creative-orange);
  display: inline-block;
  width: 1.3em;
}

/* ================================
   ARTISTIC LIST & INTERACTION
   ================================ */
details {
  margin-bottom: 14px;
  background: #fffdf7;
  border: 1px solid #ece5db;
  border-radius: var(--radius-sm);
  padding: 14px 19px 8px 18px;
  font-size: 1.03rem;
  box-shadow: 0 2px 6px rgba(242,221,180,0.05);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
details[open] {
  border-color: var(--creative-orange);
  background: #fff8ef;
}
details summary {
  font-weight: bold;
  color: var(--secondary);
  font-size: 1.09rem;
  cursor: pointer;
}
details > p {
  margin: 8px 0 0 0;
}

/* ===============================
   NEWSLETTER SIGNUP (disabled)
   =============================== */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  background: #fff;
  padding: 22px 22px 22px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 11px rgba(232,136,188,0.09);
  margin-top: 25px;
  max-width: 410px;
}
.newsletter-signup input[type='email'] {
  background: #f4f9fc;
  border-radius: 7px;
  padding: 12px 16px;
  border: 1.5px solid var(--accent);
  width: 100%;
  font-size: 1rem;
  margin-bottom: 9px;
  color: #6a6a91;
}
.newsletter-signup input[disabled] {
  background: #eeeef5;
  cursor: not-allowed;
}
.newsletter-signup button[disabled] {
  background: #b4bbc8 !important;
  color: #fff !important;
  cursor: not-allowed;
}

/* ===============================
   CONTACT PAGE FLEX + BLOCKS
   =============================== */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 38px;
  margin-top: 22px;
}
.address-block {
  min-width: 220px;
  flex: 1 1 220px;
}
.address-block h2 {
  margin-bottom: 11px;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.map-embed img {
  height: 68px;
  margin-bottom: 5px;
}
.contact-info img {
  width: 23px;
  margin-right: 7px;
  vertical-align: middle;
}
.contact-cta {
  margin-top: 32px;
}

.faqs h2 {
  margin-bottom: 8px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 34px 0 0;
  font-size: 1rem;
  border-top-left-radius: 68px;
  margin-top: 40px;
  position: relative;
  box-shadow: 0 -6px 26px rgba(33,44,78,0.05);
  z-index: 15;
}
footer span {
  color: white !important;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.03rem;
  margin-right: 24px;
}
.footer-brand img {
  width: 38px;
  height: auto;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 155px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.91;
  letter-spacing: 0.01em;
  border-radius: 17px;
  padding: 8px 5px 7px 5px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.footer-nav a:hover,.footer-legal a:hover {
  background: var(--creative-pink);
  color: #fff;
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.97rem;
  color: #d9e4fb;
  margin-top: 4px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.footer-social a {
  display: flex;
  border-radius: 50%;
  background: #fffdfd;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 1px 7px rgba(244,235,219,0.08);
}
.footer-social a:hover {
  background: var(--creative-orange);
  box-shadow: 0 4px 16px rgba(232,136,188,0.14);
}
.footer-social img {
  width: 25px;
  height: 25px;
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -3px 18px rgba(88,164,176,0.13);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  z-index: 99999999;
  padding: 22px 18px 18px 32px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-banner .btn-cookie {
  border-radius: 100px;
  padding: 7px 22px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--creative-green);
  color: #fff;
  cursor: pointer;
  margin-left: 0;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 14px rgba(62,214,127,0.10);
}
.cookie-banner .btn-cookie.reject {
  background: var(--creative-pink);
}
.cookie-banner .btn-cookie.settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  filter: brightness(1.09);
  box-shadow: 0 4px 18px rgba(88,164,176,0.13);
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%) scale(1);
  min-width: 330px;
  max-width: 98vw;
  background: #fff;
  box-shadow: 0 10px 44px 0 rgba(24,49,83,0.22);
  border-radius: var(--radius-lg);
  z-index: 100000000;
  display: flex;
  flex-direction: column;
  padding: 38px 24px 27px 28px;
  gap: 18px;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.26s cubic-bezier(.7,.3,.3,1), transform 0.23s cubic-bezier(.6,.2,.6,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.68);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 3px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 3px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-weight: 600;
  margin-right: 5px;
  color: var(--secondary);
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 14px;
  background: #e4e9f0;
  position: relative;
  margin-left: 10px;
  margin-right: 8px;
  cursor: pointer;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--creative-pink);
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.21s cubic-bezier(.81,.46,.67,1.13);
}
.cookie-toggle input:checked + span {
  background: var(--creative-green);
  left: 19px;
}
.cookie-modal .btn-primary {
  align-self: flex-end;
  padding: 12px 30px;
}
.cookie-modal .btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-radius: 100px;
  padding: 7px 22px;
  font-size: 1rem;
  margin-right: 14px;
  font-weight: 700;
}

/* ===============================
   RESPONSIVE STYLES (mobile first)
   =============================== */
@media (max-width: 900px) {
  .container {
    padding: 0 7px;
  }
  .feature-grid > div {
    min-width: 155px;
    padding: 17px 8px 10px 13px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 25px 5px;
    margin-bottom: 38px;
  }
  .footer-brand {
    font-size: 1rem;
  }
  .content-wrapper,
  .content-grid,
  .feature-grid,
  .card-container {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .feature-grid > div,
  .card {
    min-width: 95%;
    width: 99%;
    margin-bottom: 15px;
  }
  .content-wrapper > * + * {
    margin-top: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 15px 12px 8px 11px;
    font-size: .97rem;
    max-width: 98vw;
  }
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
  .footer-nav, .footer-legal, .footer-brand, .footer-social, .contact-info {
    min-width: 138px;
    font-size: 0.96rem;
  }
  .footer-social {
    margin-left: 0;
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 6px 8px 13px;
    gap: 10px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    max-width: 96vw;
    padding: 22px 7px 15px 12px;
    min-width: 160px;
  }
  h1, .hero-title {
    font-size: 1.67rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 0 2px;
  }
  header {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  footer {
    border-top-left-radius: 24px;
    font-size: 0.97rem;
    padding: 18px 0 0;
  }
  .cookie-modal {
    left: 1%;
    transform: none;
  }
}

/* ===============================
   OVERRIDES & MISC
   =============================== */
a {
  color: var(--creative-purple);
  transition: color var(--transition-fast);
}
a:hover, a:focus {
  color: var(--creative-orange);
}

section a.btn-primary, .contact-cta .btn-primary {
  margin-top: 14px;
}

::-webkit-input-placeholder {
  color: #adb8c6;
  opacity: 1;
}
::-moz-placeholder {
  color: #adb8c6;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #adb8c6;
  opacity: 1;
}
::placeholder {
  color: #adb8c6;
  opacity: 1;
}

/* Prevent overlapping + good spacing */
.card, .feature-grid > div, .testimonial-card, .news-teaser, .newsletter-signup {
  margin-bottom: 20px !important;
}

/* Decorative details for creative flair */
.section > .container:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 12px; height: 100%;
  background: linear-gradient(170deg, var(--creative-orange), var(--creative-green));
  opacity: 0.12;
  border-radius: 16px;
  pointer-events: none;
}

