/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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: #fff;
  color: #222B36;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ol, ul {
  list-style: none;
}
a {
  color: #45A0A6;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #17355D;
  text-decoration: underline;
}
button {
  font-family: inherit;
  font-size: inherit;
}

/* ===============
   BRAND COLORS
   =============== */
:root {
  --primary: #17355D;
  --secondary: #45A0A6;
  --accent: #F5F7FA;
  --danger: #E74C3C;
  --success: #27AE60;
  --info: #2980B9;
  --shadow: rgba(23,53,93,0.12);
  --radius: 18px;
  --radius-sm: 10px;
}

/* ===================
   TYPOGRAPHY
   =================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  /* Artistic touch: layering drop shadow */
  text-shadow: 2px 4px 0 #45A0A6, 2px 5px 12px rgba(23,53,93,0.07);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--secondary);
}
p, li, ul, ol, table, label, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #222B36;
}
strong {
  color: var(--primary);
}

/* Artistic Font Feature for Display */
h1, .logo-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =====================
   GENERAL LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  margin-bottom: 80px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    padding: 12px;
    gap: 14px;
  }
}

/* ==================
   HEADER & NAV
   ================== */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 800;
  background: #fff;
  box-shadow: 0 2px 12px rgba(23,53,93,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 76px;
  transition: box-shadow .25s;
}
.logo-link {
  line-height: 0;
  margin-right: 32px;
  transition: transform .2s;
  display: flex;
  align-items: center;
}
.logo-link:hover, .logo-link:focus {
  transform: scale(1.05) rotate(-3deg);
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  transition: background .2s, color .2s;
  color: var(--primary);
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.07rem;
  box-shadow: 0 4px 24px 0 rgba(69,150,166,0.09);
  cursor: pointer;
  margin-left: 36px;
  transition: transform .19s cubic-bezier(.19,1,.22,1), background .15s;
  position: relative;
  outline: none;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(69,160,166,0.11);
  opacity: 0;
  transition: opacity .18s;
  z-index: 0;
  border-radius: var(--radius-sm);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  color: #fff;
}
.btn-primary:hover::after, .btn-primary:focus::after {
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 10px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.3;
  border-radius: var(--radius-sm);
  transition: background .22s, color .22s, filter .19s;
}
.btn:active {
  filter: brightness(0.96);
  box-shadow: none;
}
/* Hamburger icon */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--secondary);
  cursor: pointer;
  margin-left: 24px;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  outline: 2px solid var(--secondary);
}
@media (max-width: 1020px) {
  nav {
    gap: 15px;
  }
  .btn-primary {
    margin-left: 18px;
    padding: 10px 19px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    min-height: 62px;
    padding: 0 6px;
  }
  nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}

/* ===========================
   MOBILE SLIDE-IN MENU
   =========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90vw;
  max-width: 370px;
  background: #fff;
  box-shadow: -4px 0 24px 0 rgba(23,53,93,0.18);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .39s cubic-bezier(.84,0,.19,1);
  display: flex;
  flex-direction: column;
  padding: 32px 0 24px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  margin: 0 24px 16px 0;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 10px 34px;
}
.mobile-nav a {
  font-size: 1.21rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: var(--radius-sm);
  padding: 10px 7px;
  transition: background .17s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================
   HERO SECTIONS
   =================== */
.hero {
  background: linear-gradient(135deg, #F5F7FA 0%, #dbe0f3 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.93);
  box-shadow: 0 8px 40px 0 rgba(69,160,166,.08);
}
@media (max-width: 768px) {
  .hero {
    min-height: 170px;
    margin-bottom: 30px;
    padding: 18px 0 0 0;
  }
}

/* ========================
   CARDS & FLEX COMPONENTS
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 0 250px;
  padding: 24px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px var(--shadow);
  transition: transform .21s cubic-bezier(.22,1,.36,1), box-shadow .18s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 16px 40px 0 rgba(23,53,93,0.12);
}
.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;
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F5F7FA;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #162032;
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #10274c;
  margin-bottom: 8px;
  line-height: 1.65;
  text-align: center;
  font-weight: 500;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: var(--secondary);
}
.testimonial-card div:last-child {
  font-size: 0.97rem;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .testimonial-card {
    font-size: 1rem;
    padding: 12px 7px;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: 0 4px 18px var(--shadow);
  margin-bottom: 20px;
}

/* FAQ accordion */
.faq-accordion h3 {
  cursor: pointer;
  margin-bottom: 8px;
  color: var(--secondary);
  position: relative;
  padding-right: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color .18s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  color: var(--primary);
  text-decoration: underline wavy .08em var(--secondary);
}
.faq-accordion p {
  font-size: 1rem;
  margin-bottom: 13px;
  color: #222B36;
}
.faq-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.faq-links a {
  padding: 8px 16px;
  background: var(--secondary);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(69,160,166,0.09);
  transition: background .17s;
}
.faq-links a:hover, .faq-links a:focus {
  background: var(--primary);
}

/* ============
   LIST STYLES
   ============ */
ul, ol {
  margin-bottom: 14px;
  padding-left: 18px;
}
ul li, ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #22354a;
  font-size: 1rem;
}
ul li img, ol li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  display: inline-block;
}
@media (max-width: 768px) {
  ul li, ol li {
    font-size: 0.99rem;
    padding-left: 23px;
  }
  ul, ol {
    padding-left: 12px;
  }
}

/* ==============
   SEPARATORS
   ============== */
hr {
  border: none;
  border-bottom: 1.5px dashed #d4e1ef;
  margin: 30px 0;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--primary);
  color: #fff;
  padding-top: 34px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #9FC9D6;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 8px;
  border-radius: 7px;
  transition: background .18s, color .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}
.contact-block {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #E1EDF0;
  line-height: 1.7;
}
.footer-branding {
  text-align: center;
  color: #E1EDF0;
  opacity: 0.77;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .footer-contact {
    gap: 18px;
  }
  .footer-nav {
    gap: 15px;
  }
}
@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  footer {
    padding-top: 26px;
  }
  .footer-branding {
    font-size: 0.94rem;
    margin-top: 10px;
  }
}

/* ================
   FORM STYLE
   ================ */
input, textarea, select {
  border-radius: var(--radius-sm);
  border: 1.3px solid #bcd2e0;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 12px;
  margin-bottom: 12px;
  width: 100%;
  background: #fafdff;
  outline: none;
  box-shadow: none;
  transition: border-color .18s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px rgba(69,160,166,0.08);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
button:disabled, input:disabled, textarea:disabled {
  background: #dce7ed;
  color: #96a7bb;
  cursor: not-allowed;
}

/* =====================
   COOKIES CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2050;
  background: #fff;
  color: #102242;
  box-shadow: 0 -2px 22px 0 rgba(23,53,93,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 32px 18px 26px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform .37s;
}
.cookie-banner.hidden {
  transform: translateY(150%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-weight: 700;
  margin-right: 8px;
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .17s;
  box-shadow: 0 1px 6px rgba(69,160,166,.07);
}
.cookie-banner .cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: var(--primary);
}
.cookie-banner .cookie-btn.reject {
  background: #e74c3c;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #c0392b;
}
.cookie-banner .cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    font-size: 0.98rem;
    padding: 13px 9px 13px 7px;
    gap: 11px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,53,93,0.63);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .32s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 34px rgba(23,53,93,0.19);
  padding: 32px 36px 24px 36px;
  max-width: 430px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 2px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
  margin: 0 8px 0 0;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}
.cookie-category .cookie-essential {
  font-size: 0.97rem;
  color: #888;
  opacity: 0.92;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 18px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 50%;
  transition: background .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 17px 7px 18px 8px;
    gap: 16px;
  }
  .cookie-modal-content h2 {
    font-size: 1.18rem;
  }
}

/* =======================
   ARTISTIC / CREATIVE STYLE EXTRAS
   ======================= */
/* Unique colorful markers for lists */
ul li:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  margin-left: -22px;
}
ul li img {
  left: 0; margin-right: 6px;
  background: #fff;
  padding: 2px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(69,160,166,0.08);
}
/* artistic highlight */
mark, .highlight {
  background: #ffe561;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  padding: 2px 8px;
  border-radius: 7px;
}

/* Artistic section backgrounds */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
}
section:nth-of-type(even) {
  background: #F5F7FA;
}
@media (max-width: 900px) {
  section {
    padding: 27px 0;
    margin-bottom: 36px;
  }
}

/* Decorative absolute blobs */
.section::before, .section::after {
  content: '';
  display: none;
}
@media (min-width: 1000px) {
  .section:nth-of-type(even)::before {
    display: block;
    position: absolute;
    left: -60px;
    top: 12%;
    width: 120px;
    height: 120px;
    background: rgba(69,160,166,0.17);
    border-radius: 50%;
    z-index: 0;
  }
  .section:nth-of-type(even)::after {
    display: block;
    position: absolute;
    right: -40px;
    bottom: 16%;
    width: 90px;
    height: 90px;
    background: rgba(23,53,93,0.08);
    border-radius: 25% 43% 51% 41%;
    z-index: 0;
  }
}

/* Artistic buttons variant */
.btn-artistic {
  background: #ffe561;
  color: #112;
  box-shadow: 0 2px 18px rgba(255,229,97,0.19);
  border: 1.3px solid #FFF3AC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 16px;
  transition: background .19s, box-shadow .14s, color .21s;
}
.btn-artistic:hover, .btn-artistic:focus {
  background: #fffdce;
  color: var(--primary);
  box-shadow: 0 8px 28px 0 rgba(69,160,166,0.13);
}

/* Social section (contact) */
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.text-section ul li {
  font-size: 1.03rem;
  color: #22354a;
}
.text-section img {
  width: 20px; height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Artistic hover effect for all cards */
.card, .testimonial-card, .feature-item {
  cursor: pointer;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 6px 44px 0 rgba(69,160,166,0.20);
  transform: rotateZ(-1.2deg) scale(1.01);
}

/* ====== SPACING CONSTRAINTS ====== */
.card-container, .content-grid {
  gap: 24px;
  margin-bottom: 20px;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .card-container,
  .content-grid,
  .text-image-section {
    gap: 16px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 6px;
  }
}

/* ===============
   FLEXBOX RULES
   =============== */
/* All major container classes already use Flexbox per requirements. */


/* ===============
   RESPONSIVENESS
   =============== */
/* Mobile-first: most containers are column direction, row direction on large. */
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
.card-container, .content-grid {
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
  }
}

/* ===== MICRO-INTERACTIONS & ANIMATIONS ===== */
.btn, .btn-primary, .cookie-btn, .faq-accordion h3, .mobile-nav a {
  transition: background .19s, color .14s, box-shadow .19s, transform .16s;
}
.card, .feature-item {
  transition: box-shadow .18s, transform .19s;
}
.testimonial-card {
  transition: box-shadow .21s, transform .14s;
}
.cookie-banner, .cookie-modal-content {
  animation: fadein .37s ease;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============
   OVERRIDES & MISC
   =============== */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #f0f8ff;
}
::-moz-selection {
  background: #ffe561;
  color: #17355D;
}
::selection {
  background: #ffe561;
  color: #17355D;
}

[tabindex]:focus, a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/**********************
Mobile burger menu and cookie banner JS is assumed to show/hide .open and .hidden classes as needed
***********************/
