/* ================== 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #154770;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: disc inside;
  margin-bottom: 1.5em;
}

ul li, ol li {
  margin-bottom: 0.5em;
}

a {
  color: #F2BA45;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #154770;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #154770;
  margin-bottom: 16px;
  line-height: 1.12;
  letter-spacing: -1px;
}

h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}

blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 24px;
  margin: 0 0 16px 0;
  background: #E6F0F8;
  border-left: 8px solid #F2BA45;
  border-radius: 20px 0 0 20px;
  color: #154770;
}

cite {
  display: block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.95rem;
  margin-top: 6px;
  font-style: normal;
  color: #888;
}

/* ================== BRANDING & LAYOUT ================== */
:root {
  --primary: #154770;
  --secondary: #E6F0F8;
  --accent: #F2BA45;
  --light: #fff;
  --shadow: 0 4px 20px rgba(21, 71, 112, 0.07);
  --radius: 18px;
  --radius-small: 10px;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

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

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.22s, transform 0.20s;
  min-width: 270px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(242,186,69,0.14);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}

.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;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-small);
  border: 2px solid #E6F0F8;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(242,186,69,0.10);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================== HEADER & NAV ================== */
header {
  background: var(--secondary);
  box-shadow: 0 2px 10px rgba(21,71,112,0.07);
  position: relative;
  z-index: 11;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  gap: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  color: var(--primary);
  border-radius: var(--radius-small);
  padding: 8px 14px;
  background: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #154770;
  box-shadow: 0 2px 10px rgba(242,186,69,0.13);
  text-decoration: none;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-small);
  padding: 12px 30px;
  box-shadow: 0 2px 16px rgba(242,186,69,0.14);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
  margin-left: 24px;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD158;
  color: #154770;
  box-shadow: 0 8px 32px rgba(242,186,69,0.18);
  transform: scale(1.035) skew(-1deg,0.7deg) rotate(-1deg);
}

.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: var(--radius);
  padding: 6px 14px 8px 14px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, box-shadow 0.15s, transform 0.18s;
  z-index: 1002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD158;
  color: #154770;
  box-shadow: 0 8px 32px rgba(242,186,69,0.18);
  outline: none;
}

/* ================== MOBILE MENU ================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230,240,248, 0.99);
  z-index: 1002;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  transition: transform 0.41s cubic-bezier(.67,-0.12,.32,1.04);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  animation: slideInMobileMenu 0.47s cubic-bezier(.67,-0.12,.32,1.04);
}
@keyframes slideInMobileMenu {
  0% { transform: translateX(-100%); }
  70% { transform: translateX(3%); }
  100% { transform: translateX(0%); }
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--primary);
  background: none;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  margin: 24px 24px 8px 0;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 40px 36px 60px 38px;
  width: 100%;
  height: 80vh;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--primary);
  background: none;
  border: none;
  padding: 10px 0 10px 8px;
  border-radius: var(--radius-small);
  transition: background 0.18s, color 0.17s;
  width: 96%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: #154770;
}

/* ================== HERO SECTION ================== */
.hero {
  background: linear-gradient(90deg, #F2BA45 0%, #E6F0F8 100%);
  padding: 60px 0 60px 0;
  margin-bottom: 58px;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 320px;
  box-shadow: 0 8px 64px rgba(242,186,69,0.04);
  border-radius: 0 0 60px 0/0 0 50px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
  gap: 18px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  line-height: 1.15;
  color: #154770;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(21,71,112,0.03);
}
.hero p {
  font-size: 1.2rem;
  color: #395B89;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 30px 0;
    border-radius: 0 0 28px 0/0 0 22px 0;
    margin-bottom: 37px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* ================== FEATURE GRID (Index) ================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
  border: 3px solid #E6F0F8;
  position: relative;
  transition: transform 0.2s, border 0.15s, box-shadow 0.15s;
}
.feature::after {
  content: '';
  position: absolute;
  left: -20px;
  top: 30px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.17;
  pointer-events: none;
  z-index: 0;
  animation: bouncey 2.8s infinite linear alternate;
}
@keyframes bouncey {
  from { top: 30px; }
  to { top: 22px; }
}
.feature:hover, .feature:focus-visible {
  border: 3px solid var(--accent);
  transform: scale(1.045) rotate(-1deg);
  box-shadow: 0 8px 34px rgba(242,186,69,0.11);
}
.feature img {
  height: 54px;
  width: 54px;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(21,71,112,0.06));
}
.feature h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ================== TEXT/CONTENT SECTION ================== */
.text-section {
  background: #fff;
  border-radius: var(--radius-small);
  padding: 20px 20px 24px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul, .text-section ol {
  margin-bottom: 0px;
}
.text-section h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}

/* ================== TESTIMONIALS ================== */
.testimonials {
  margin-bottom: 60px;
  width: 100%;
}
.testimonials .content-wrapper {
  gap: 18px;
}
.testimonial-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-small);
  border: 2.5px solid #F2BA45;
  align-items: flex-start;
  transition: border 0.18s, box-shadow 0.15s;
  gap: 20px;
  position: relative;
}
.testimonial-card:hover {
  border: 2.5px solid #154770;
  box-shadow: 0 8px 32px rgba(21,71,112,0.09);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  padding: 0 0 0 8px;
  font-size: 1.09rem;
  font-style: italic;
  color: #222;
}
.testimonial-card cite {
  color: var(--primary);
  font-weight: 700;
  margin-top: 3px;
}

/* ================== TABLES ================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 18px 0;
  background: #fff;
  border-radius: var(--radius-small);
  overflow: hidden;
}
th, td {
  padding: 12px 16px;
  border: 1px solid #E6F0F8;
  font-size: 1rem;
  text-align: left;
}
th {
  background: #e7f4fa;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
td {
  color: #2a2a2a;
}

/* ================== FOOTER ================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 16px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.86;
  letter-spacing: 0.11px;
  background: none;
  transition: color 0.14s, opacity 0.15s, background 0.19s;
  border-radius: var(--radius-small);
  padding: 4px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2BA45;
  opacity: 1;
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  font-size: 0.98rem;
}
.contact-footer a {
  color: #F2BA45;
  transition: color 0.14s;text-decoration: underline;
}

/* ================== CTA SECTIONS ================== */
section .cta-btn {
  margin-top: 18px;
  font-size: 1.13rem;
  align-self: flex-start;
  animation: pulseCta 2s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55) alternate;
}
@keyframes pulseCta {
  0% { box-shadow: 0 0px 12px rgba(242,186,69,0.10); }
  100% { box-shadow: 0 0px 34px rgba(242,186,69,0.22); }
}

/* ================== FUN PLAYFUL ANIMATIONS ================== */
h1, h2, h3 {
  animation: bounceIn 0.7s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
@keyframes bounceIn {
  0% { transform: scale(0.93) translateY(40px); opacity: 0; }
  62% { transform: scale(1.04) translateY(-8px); opacity: 1; }
  80% { transform: scale(0.99) translateY(3px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.feature img, .feature::after {
  animation: wiggle 3.4s infinite alternate cubic-bezier(.75,0,0.27,1);
}
@keyframes wiggle {
  0% { transform: rotate(-7deg); }
  100% { transform: rotate(6deg); }
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #154770;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(21,71,112,0.16);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px 24px;
  gap: 28px;
  font-size: 1rem;
  opacity: 0.97;
  animation: slideInCookie 0.5s cubic-bezier(.79,-0.01,.38,1.01);
}
@keyframes slideInCookie {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  max-width: 540px;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-small);
  padding: 10px 18px;
  cursor: pointer;
  margin: 0;
  transition: background 0.17s, color 0.16s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #154770;
}
.cookie-btn.reject {
  background: #fff;
  color: #154770;
  border: 1.6px solid var(--primary);
}
.cookie-btn.settings {
  background: #395B89;
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  transform: scale(1.07);
  outline: none;
}

/* ======== COOKIE PREFERENCES MODAL ======== */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(21,71,112,0.31);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.32s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #154770;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(21,71,112,0.13);
  max-width: 420px;
  width: 96vw;
  padding: 38px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popInCookieModal 0.31s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popInCookieModal {
  0% { transform: scale(0.9) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.19rem;
  color: var(--primary);
  margin-bottom: 5px;
  margin-top: -12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-option-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: 24px;
  transition: background-color 0.17s;
}
.switch input:checked + .slider {
  background: var(--accent);
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 2px 4px rgba(21,71,112,0.10);
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 21px;
  font-size: 2rem;
  background: none;
  color: #154770;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--accent);
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .content-wrapper { gap: 20px; }
  .feature-grid { gap: 18px; }
  .card-container { gap: 12px; }
}
@media (max-width: 924px) {
  .container, .footer .container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-nav { flex-direction: column; gap: 10px; }
  footer .container { flex-direction: column; gap: 7px; align-items: flex-start;}
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding-left: 9px;
    padding-right: 9px;
    gap: 0;
  }
  .main-nav { display: none; }
  .cta-btn { margin-left: 6px; font-size: 1rem; }
  .mobile-menu-toggle { display: block; }
  .feature-grid { flex-direction: column; }
  .card-container { flex-direction: column; }
  .content-grid { flex-direction: column; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section { padding: 28px 5px; }
  .footer-nav { flex-direction: column; gap: 8px; align-items: flex-start; }
  .contact-footer { align-items: flex-start; font-size: 0.95rem; }
  .hero .content-wrapper { max-width: 96vw; }
}
@media (max-width: 680px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .section { padding: 16px 2px; }
  .content-wrapper { gap: 10px; }
  .feature { padding: 20px 9px; min-width: 120px; font-size: 0.97rem; }
  .card { padding: 16px 10px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  .card, .feature, .text-section { padding: 10px 5px; }
  .cookie-banner { flex-direction: column; padding: 17px 8px; gap: 14px; }
  .hero { border-radius: 0 0 10px 0/0 0 6px 0; }
}

/* ================== UTILITY CLASSES ================== */
.mt-4 {margin-top:32px;}
.mb-4 {margin-bottom:32px;}
.mt-2 {margin-top:16px;}
.mb-2 {margin-bottom:16px;}
.center {text-align: center !important;}

/* ================== PLAYFUL FONT FLAVOUR ================== */
body, p, ul, li, span, td, th, cite, .footer, .contact-footer {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
h1, h2, h3, .main-nav a, .footer-nav a, .mobile-nav a, .cta-btn, .cookie-btn, .feature h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
}
h1, h2, .cta-btn {
  text-shadow: 0 1px 10px rgba(242,186,69,0.08);
}

/* ================== FLEXBOX SPACING (MANDATORY 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) {
  .content-grid,
  .text-image-section,
  .section,
  .card-container,
  .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ================== FORMS (WHEN NEEDED) ================== */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-small);
  border: 1.3px solid #E6F0F8;
  padding: 9px 12px;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid var(--accent);
  outline: none;
}
button {
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
}

/* ============= FUN MICROINTERACTIONS ============= */
.card, .feature, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a, .cookie-btn, .cookie-modal .close-modal {
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, border 0.19s, transform 0.18s;
}

/* =================================================== */
/* NO display:grid AT ALL. PURE FLEXBOX EVERYWHERE.   */
/* Minimum margin 20px between cards/sections ensured.*/
/* Consistent spacing, responsive & playful!          */
/* =================================================== */
