/* ------------------------------------------------- */
/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ------------------------------------------------- */
/* BRAND VARIABLES & FONTS */
/* ------------------------------------------------- */
:root {
  --primary: #22436C;
  --secondary: #85B440;
  --accent: #F4F9F5;
  --accent-bright: #fff6d6;
  --info: #56C6F7;
  --warning: #FFD233;
  --danger: #FF5B5B;
  --text-main: #1a2537;
  --text-secondary: #3E5C77;
  --bg: #FCFCFD;
  --bg-light: #F4F9F5;
  --shadow: 0 2px 16px 0 rgba(34,67,108,0.08);
  --radius: 18px;
  --transition: .25s cubic-bezier(.66,0,.2,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------- */
/* TYPOGRAPHY PLAYFUL DYNAMIC */
/* ------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem; 
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, ul {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* Fun fonts for playfulness (used for headers) */
h1, h2 {
  text-shadow: 1px 2px 0 #fbe870, 0 5px 14px #e7faf7;
  /* fun shadow for 'dynamic' look */
}


/* ------------------------------------------------- */
/* LAYOUT CONTAINER */
/* ------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ------------------------------------------------- */
/* HEADER & NAVIGATION (Playful + Dynamic Styling) */
/* ------------------------------------------------- */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 4px 20px 0 rgba(34,67,108,0.07);
  position: sticky; top: 0; z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header img {
  height: 40px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 6px 12px 7px 12px;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 12px 30px;
  box-shadow: 0 4px 16px 0 rgba(133,180,64,0.10);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  margin-left: 15px;
  position: relative;
  z-index: 1;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #699122;
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
  box-shadow:
    0 8px 24px 0 rgba(133,180,64,0.14),0 2px 8px 0 rgba(255,216,38,0.10);
}

.mobile-menu-toggle {
  display: none;
  background: var(--warning);
  border: none;
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,67,108,0.12);
}
@media (max-width: 1020px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ------------------------------------------------- */
/* MOBILE MENU STYLING & ANIMATION */
/* ------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244,249,245,0.95);
  z-index: 202;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.66,0,.2,1);
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 30px;
  top: 27px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  transition: color var(--transition);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--danger);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 70px 0 0 0;
  width: 100%;
  align-items: flex-start;
  padding: 2rem 32px 2rem 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  padding: 12px 8px 12px 0;
  border-radius: 12px;
  color: var(--primary);
  background: none;
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: white;
  transform: scale(1.08) translateX(6px);
}

@media (max-width: 1020px) {
  .mobile-menu-toggle { display: flex; }
  nav { display: none; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ------------------------------------------------- */
/* HERO SECTION (energetic, w playful color blocks) */
/* ------------------------------------------------- */
.hero-section {
  background: linear-gradient(102deg, var(--secondary) 0%, #bbf4be 100%, #fff 100%);
  border-radius: 0 0 40px 0;
  padding-bottom: 30px;
  box-shadow: 0 10px 60px rgba(133,180,64,0.04);
  animation: herofade 1.2s ease-in;
}
@keyframes herofade {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: none; }
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.54rem;
  font-weight: 800;
  line-height: 1.09;
}
.hero-section p {
  font-size: 1.18rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

@media (max-width: 670px) {
  .hero-section h1 { font-size: 2rem; }
  .hero-section p { font-size: 1rem; }
}

/* ------------------------------------------------- */
/* FEATURES/GRID/CARDS - Playful Dynamic Style */
/* ------------------------------------------------- */
.feature-grid, .benefits-grid, .resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-grid > div, .benefits-grid > div, .resource-grid > div {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(67,86,46,.06);
  padding: 30px 24px 28px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition), background 0.2s;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
}
.resource-grid > div { background: var(--accent-bright); border:2px solid #ffe37a; }
.feature-grid > div:hover, .benefits-grid > div:hover, .resource-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(67,86,46,0.17);
  background: #fff;
  transform: translateY(-7px) scale(1.03) rotate(-.4deg);
  border-color: var(--secondary);
}
.feature-grid img, .benefits-grid img, .resource-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 14px;
}
.feature-grid h3, .benefits-grid h3, .resource-grid h3 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* for spacing and alignment between cards */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
  padding: 22px 20px;
}
.card:hover {
  box-shadow: 0 10px 34px 0 rgba(34,67,108,0.11);
  transform: scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .feature-grid, .benefits-grid, .resource-grid { gap: 18px; }
  .feature-grid > div, .benefits-grid > div, .resource-grid > div {
    min-width: 175px;
    padding: 20px 12px;
  }
  .content-grid { gap: 12px; }
}

/* ------------------------------------------------- */
/* STEP LISTS AND TIPS BOXES */
/* ------------------------------------------------- */
.steps-section ol {
  padding: 0 0 0 30px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.steps-section li {
  margin-bottom: 0;
  position: relative;
  padding-left: 0;
}
.tips-box {
  background: #ffe37a;
  color: var(--primary);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 #fff9d0;
  padding: 20px 20px 14px 20px;
  margin-top: 12px;
  font-size: 1rem;
  animation: tipbounce 1.1s cubic-bezier(.38,0,.28,1) 1;
}
@keyframes tipbounce {
  0% { transform: scale(1.04); background: #faf728; }
  60% { transform: scale(1.07); background: #ffe37a; }
  100% { transform: scale(1); }
}
.tips-box ul {
  list-style: disc inside;
  margin: 0;
  color: var(--primary);
}
.tips-box h3 { margin-bottom:8px; }

/* ------------------------------------------------- */
/* FAQ LIST */
/* ------------------------------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
}
.faq-list > div {
  background: #fff9e5;
  border: 2px solid #fde989;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px 0 #ffeaa977;
  flex: 1 1 265px;
  min-width: 220px;
  padding: 22px 20px 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeinfaq 1.2s;
}
@keyframes fadeinfaq {
  0% { opacity: 0; transform: scale(1.05) translateY(20px);}
  100% { opacity: 1; transform: none; }
}
.faq-list h3 {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 1.15rem;
}

/* ------------------------------------------------- */
/* TESTIMONIAL CARDS */
/* ------------------------------------------------- */
.testimonials-section,
.trust-signals-section {
  background: linear-gradient(90deg, #F4F9F5 0%, #f9fbe8 100%);
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(34,67,108,0.04);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px 0 rgba(34,67,108,0.07);
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
  max-width: 650px;
  color: #233040;
  font-size: 1.08rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(34,67,108,0.12);
  transform: translateY(-4px) scale(1.02);
  border-left-color: var(--primary);
}
.testimonial-card p {
  color: #272c2f;
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.testimonial-meta {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
}

/* ------------------------------------------------- */
/* CTA Section (dynamic) */
/* ------------------------------------------------- */
.cta-section {
  background: linear-gradient(94deg,#ffe37a 0%, #F4F9F5 85%);
  border-radius: 0 36px 0 36px;
  text-align: center;
  box-shadow: 0 1px 14px 0 #ffd51117;
  margin-bottom: 60px;
  padding: 46px 20px 46px 20px;
}
.cta-section h2 {
  color: var(--primary);
  font-size: 2.05rem;
  text-shadow: 1px 2px 0 #f4f9f5, 0 5px 14px #ffe381;
}
.cta-section p {
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 18px;
}

/* ------------------------------------------------- */
/* TABLES (e.g. for investicni-nastroje) */
/* ------------------------------------------------- */
table {
  font-family: var(--font-body);
  width: 100%;
  margin-top: 24px;
  margin-bottom: 16px;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px 0 #85B44015;
  font-size: 1.03rem;
}
thead th {
  background: var(--secondary);
  color: #fff;
  padding: 14px 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
tbody td {
  padding: 12px 10px;
  text-align: left;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
}
tr:last-child td {
  border: none;
}

/* ------------------------------------------------- */
/* FOOTER */
/* ------------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 46px 0 32px 0;
  border-radius: 36px 0 0 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #ffe37a;
  font-size: 1rem;
  font-weight: 700;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
  margin-bottom: 3px;
}
.footer-logo img {
  height: 48px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 0;
  }
  .footer-logo img { margin: 0 auto; }
}

/* ------------------------------------------------- */
/* CONTACT INFO and OFFICE HOURS BLOCKS */
/* ------------------------------------------------- */
.contact-info, .office-address, .opening-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-info p, .office-address p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.opening-hours {
  background: #e5ffde;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--primary);
  font-weight: 700;
}

/* ------------------------------------------------- */
/* TEAM LIST & TRUST SIGNALS */
/* ------------------------------------------------- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.team-list > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 18px 18px 10px 18px;
  margin-bottom: 20px;
}
.trust-signals-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.trust-signals-section li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eafdde;
  padding: 10px 20px 10px 12px;
  border-radius: 12px;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.trust-signals-section ul img {
  height: 32px;
  width: 32px;
}

/* ------------------------------------------------- */
/* MAP SECTION STYLING */
/* ------------------------------------------------- */
.map-section {
  background: #fff9e5;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 #ffeaa915;
  margin-bottom: 40px;
  padding: 38px 20px 32px 20px;
}

/* ------------------------------------------------- */
/* THANK YOU SECTION HIGHLIGHT */
/* ------------------------------------------------- */
.thank-you-section {
  background: linear-gradient(95deg, #ffe37a 0%, #F4F9F5 80%);
  border-radius: 32px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 4px 18px 0 #ffeaa92a;
  padding: 46px 18px 36px 18px;
  animation: fadeinup 1.25s cubic-bezier(.36,0,.23,1);
}
@keyframes fadeinup {
  0% { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: none; }
}
.thank-you-section ul {
  list-style: disc inside;
  color: var(--primary);
  text-align: left;
  margin: 28px auto 22px auto;
  max-width: 480px;
}

.thank-you-section a.btn-primary { margin-top: 12px; }

/* ------------------------------------------------- */
/* COOKIE CONSENT BANNER */
/* ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 2.5px solid #fde989;
  padding: 22px 18px;
  box-shadow: 0 -6px 28px 0 #fbe87045;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  animation: fadeinup 0.8s cubic-bezier(.5,0,.25,1);
  font-size: 1rem;
}
.cookie-banner-message {
  flex: 1 1 65%;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 120px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px #b3e1703b;
  transition: background var(--transition), box-shadow var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #219667;
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c41c1c;
}
.cookie-btn.settings {
  background: var(--warning);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fbe870;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    font-size: 15px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center; justify-content: center;
  background: rgba(34,67,108,0.12);
  transition: opacity .27s;
  animation: fadeinup 0.4s;
}
.cookie-modal-content {
  background: #fff9e5;
  color: var(--primary);
  border-radius: 23px;
  box-shadow: 0 8px 34px 0 #ffeaa96a;
  padding: 38px 32px;
  max-width: 420px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: var(--danger); }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 13px 0;
}
.cookie-category label {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
}
.cookie-toggle {
  width: 34px; height: 20px;
  background: #e5e5e5;
  border-radius: 16px;
  position: relative;
  margin-left: 6px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--secondary);
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle input:checked + span {
  left: 16px; background: var(--primary);
}
/* Always enabled for essential cookies */
.cookie-category.essential .cookie-toggle span {
  background: #bbbbbb;
}
.cookie-category.essential .cookie-toggle {
  background: #eee;
  pointer-events: none;
}

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}

/* ------------------------------------------------- */
/* RESPONSIVE flex helpers and common sections */
/* ------------------------------------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .benefits-grid, .resource-grid, .faq-list, .team-list, .trust-signals-section ul, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 16px; align-items: stretch; }
  .cta-section, .thank-you-section, .map-section {
    padding: 26px 5px 24px 5px;
    border-radius: 18px;
  }
}

/* ------------------------------------------------- */
/* Misc: selection, focus, etc. */
/* ------------------------------------------------- */
::selection { background: #ffe37a; color: var(--primary); }
*:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 3.5px;
}

/* ------------------------------------------------- */
/* Animations for fun/playful touches */
/* ------------------------------------------------- */
@keyframes bounce {
  0% { transform: translateY(0); }
  25% { transform: translateY(-4px) scale(1.08); }
  50% { transform: translateY(2px) scale(1.04); }
  100% { transform: none; }
}
.btn-primary:hover,
.card:hover,
.feature-grid > div:hover,
.resource-grid > div:hover {
  animation: bounce 0.38s cubic-bezier(.58,1.6,.56,1.3) 1;
}

/* ------------------------------------------------- */
/* UTILITIES: margin/gap helpers where needed */
/* ------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* ------------------------------------------------- */
/* PRINT STYLES */
/* ------------------------------------------------- */
@media print {
  nav, .mobile-menu, .btn-primary, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
}
