/* ===================
    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 {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F8FA;
  color: #28516B;
  line-height: 1.64;
  overflow-x: hidden;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #28516B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B500;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* =========================
    BRAND STYLE VARIABLES (fallbacks for custom props if JS enhances later)
   ========================== */
:root {
  --primary: #28516B;
  --primaryLight: #377599;
  --secondary: #F7B500;
  --accent: #FFFFFF;
  --brand-dark: #1E3648;
  --fun1: #F27370;
  --fun2: #57CA85;
  --fun3: #4FD3F7;
  --fun4: #F57E25;
  --gray: #E8EDEF;
  --shadow-lg: 0 8px 24px 0 rgba(40,81,107,0.08), 0 1.5px 4px 0 rgba(40,81,107,.10);
  --shadow-card: 0 2px 14px 0 rgba(40,81,107,0.08);
  --radius: 20px;
}

/* ===========
   TYPOGRAPHY
   =========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #28516B;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.15; }
h3 { font-size: 1.38rem; line-height: 1.2; }
h4 { font-size: 1.125rem; line-height: 1.2; }
@media (max-width:550px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #28516B;
}
strong, b {
  color: #28516B;
  font-weight: 700;
}
.cta-btn, .cta-btn:visited {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--secondary);
  color: var(--primary);
  padding: 18px 38px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.12rem;
  box-shadow: var(--shadow-lg);
  transition: transform .22s cubic-bezier(.65,.05,.36,1), box-shadow .22s, background .2s;
  display: inline-block;
  letter-spacing: 0.02em;
  border: 2px solid var(--secondary);
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 10px;
  text-align: center;
}
.cta-btn:hover,.cta-btn:focus {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 32px 0 rgba(40,81,107,0.15);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}

/* =========================
   CONTAINER & LAYOUT FLEXBOX
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0; /* Reset by default */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .18s;
  min-width: 270px;
  flex: 1 1 270px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(59,154,219,0.11);
  transform: translateY(-2px) scale(1.03) rotate(1.2deg);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(40,81,107,0.10);
  position: relative;
  min-width: 250px;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 14px 18px 20px;
  margin-bottom: 18px;
}

/* ===============
   MAIN NAVIGATION
   =============== */
header {
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(40,81,107,0.07);
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 0;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  padding: 7px 18px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.01rem;
  transition: background .16s, color .16s, box-shadow .12s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 0 0 2px #fff2;
}
.main-nav .cta-btn {
  margin: 0 0 0 8px;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: none;
  font-size: 1.07rem;
  border-radius: 20px; 
  font-weight: 800;
  padding: 12px 28px;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid #fff;
}

/* ============
   MOBILE MENU
   ============ */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px 0 rgba(40,81,107,0.08);
  border: none;
  cursor: pointer;
  margin-left: 14px;
  transition: background .13s, box-shadow .15s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--fun1);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 8px 36px rgba(40,81,107,0.12);
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  padding: 24px 23px 0 16px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--fun1);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: auto;
  margin-bottom: 16px;
  display: flex;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(40,81,107,0.13);
  z-index: 202;
  transition: background .13s, color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primaryLight);
  color: #fff;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 13px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  padding: 13px 11px;
  border-radius: 15px;
  color: var(--primary);
  font-weight: 700;
  transition: background .17s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun3);
  color: var(--fun1);
}

/* Only show .mobile-menu-toggle, hide .main-nav on mobile */
@media (max-width: 950px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =============
   HERO SECTION
   ============= */
.hero {
  background: linear-gradient(110deg, var(--primary) 65%, var(--fun3) 100%);
  padding: 56px 0 44px 0;
  color: #fff;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-shadow: 2px 2px 6px rgba(40,81,107,.15);
}
.hero p {
  font-size: 1.15rem;
  color: #edf4fc;
}
.hero .cta-btn {
  margin-top: 16px;
  background: var(--secondary);
  color: var(--primary);
}

.service-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.service-tags span {
  background: var(--fun4);
  color: #fff;
  border-radius: 16px;
  font-size: 1rem;
  padding: 8px 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(245,126,37,0.10);
}

/* ============
   FEATURE GRID
   ============ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px 26px 22px;
  box-shadow: 0 2px 15px 0 rgba(40,81,107,0.08);
  min-width: 240px;
  flex: 1 1 220px;
  gap: 14px;
  transition: box-shadow .25s, transform .18s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px 0 rgba(59,154,219,0.11);
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
}
.feature-grid img {
  height: 48px; width: 48px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 4px var(--fun3));
}
.feature-grid h3 {
  font-size: 1.22rem;
  margin-bottom: 4px;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
}
.feature-grid p {
  color: #56748a;
  font-size: 1.01rem;
}

/* =============
   FAQ ACCORDION
   ============= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(40,81,107,0.10);
  padding: 20px 24px;
  transition: box-shadow .22s,transform .13s;
  min-width: 250px;
}
.faq-item h3 {
  color: var(--fun3);
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.faq-item p {
  color: #38546e;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 4px 20px 0 rgba(87,202,133,0.15);
  transform: scale(1.02) rotate(-1deg);
}

/* =============
   TESTIMONIALS
   ============= */
.testimonials {
  background: #fff7e0;
  padding-top: 48px;
  padding-bottom: 32px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 0;
}
.testimonial-card {
  box-shadow: 0 2px 15px 0 rgba(40,81,107,0.07);
  position: relative;
  border-left: 7px solid var(--secondary);
  background: #fff;
  color: #21344b;
  margin-bottom: 28px;
}
.testimonial-card strong {
  color: var(--fun2);
  font-size: 1rem;
  font-weight: 800;
  margin-top: 3px;
}
.testimonial-card .testimonial-stars {
  font-size: 1.25rem;
  color: var(--fun4);
  user-select: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: #28516B;
  font-size: 1.09rem;
  margin-bottom: 8px;
}

/* =============
   ABOUT VALUES & LISTS
   ============= */
.about-values ul,
.features ul,
.success-factors ul,
.legal ul {
  margin: 16px 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-values ul li,
.features ul li,
.success-factors ul li,
.legal ul li {
  font-size: 1.07rem;
  color: #377599;
  position: relative;
  padding-left: 30px;
}
.about-values ul li:before,
.features ul li:before,
.success-factors ul li:before,
.legal ul li:before {
  content: '\2713';
  color: var(--fun2);
  font-size: 1rem;
  position: absolute;
  left: 1px;
  top: 2px;
}

/* UL for contacts and info */
.contact-block ul,
.contact-card ul,
section ul {
  margin-top: 10px;
  margin-bottom: 16px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.contact-block li,
.contact-card li,
section ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #1E3648;
}
.contact-block li img,
.contact-card li img {
  width: 24px;
  height: 24px;
}

/* Success factors CHECKS */
.success-factors ul li:before {
  content: '\2605';
  color: var(--fun4);
  font-size: 1.03rem;
  left: 2px;
}

.thankyou-block ul {
  margin-top: 18px;
  margin-bottom: 22px;
  gap: 10px;
  flex-direction: column;
  display: flex;
}
.thankyou-block ul li {
  font-size: 1.07rem;
  color: var(--fun1);
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 29px;
}
.thankyou-block ul li:before {
  content: '✓';
  color: var(--fun2);
  left: 0;
  top: 1px;
  position: absolute;
}

/* =============
   USP and HIGHLIGHT P 
   ============= */
.usp {
  color: var(--fun1);
  font-weight: 700;
  font-family: 'Montserrat','Roboto',Arial,sans-serif;
  font-size: 1.10rem;
  padding: 8px 0 0 0;
}

/* ==============
   MAP BLOCK & LOCATION
   ============= */
.map-block {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 6px;
  border-radius: 20px;
  background: #f7fbfb;
  box-shadow: 0 1px 7px 0 rgba(40,81,107,0.04);
  margin-top: 18px;
}
.map-block img {
  width: 48px;
  height: 48px;
}
.map-block p {
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: 600;
}

/* ============
   FOOTER
   ============ */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 22px 0;
  width: 100%;
  box-shadow: 0 -3px 15px 0 rgba(80,102,134,0.05);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat','Roboto',Arial,sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  opacity: .90;
  transition: color .13s, opacity .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-family: 'Montserrat', 'Roboto', Arial,sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
}
.footer-brand img {
  height: 32px; width: 32px;
  object-fit: contain;
}

/* =================
   COOKIE BANNER/MODAL
   ================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #28516B;
  z-index: 300;
  box-shadow: 0 -4px 32px 0 rgba(255,189,37,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 22px 26px 22px;
  font-size: 1.07rem;
  animation: cookie-slide-in 0.55s cubic-bezier(.58,0,.45,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(90px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 13px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat','Roboto',Arial,sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background .12s, color .12s, box-shadow .14s;
  box-shadow: 0 1px 7px rgba(40,81,107,0.04);
}
.cookie-btn.accept {
  background: var(--fun2);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--fun1);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-btn.accept:hover { background: var(--secondary); color: var(--primary); }
.cookie-btn.reject:hover { background: var(--fun3); color: #fff; }
.cookie-btn.settings:hover { background: var(--fun3); color: #fff; border-color: var(--fun3); }

/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,81,107,0.17);
  backdrop-filter: blur(1px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .28s cubic-bezier(.54,0,.39,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 8px 36px rgba(40,81,107,0.15);
  padding: 32px 34px 22px 28px;
  max-width: 420px;
  min-width: 320px;
  width: 90%;
  z-index: 700;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideUpModal 0.40s cubic-bezier(.77,0,.18,1);
}
@keyframes slideUpModal {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 14px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.cookie-modal strong {
  color: var(--primary);
}
.toggle-switch {
  width: 44px; height: 26px;
  background: var(--gray);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background .13s;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.toggle-switch.enabled {
  background: var(--fun2);
}
.toggle-switch .toggle-handle {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s cubic-bezier(.36,.98,.98,.41), background .12s;
  box-shadow: 0 1px 6px rgba(40,81,107,0.11);
}
.toggle-switch.enabled .toggle-handle {
  left: 21px;
  background: #fff;
}
.toggle-switch[aria-disabled="true"] {
  background: #aee6c6;
  cursor: default;
  opacity: .82;
}
.toggle-switch[aria-disabled="true"] .toggle-handle {
  background: #e6eedc;
}
.cookie-modal .modal-actions {
  margin-top: 21px;
  gap: 14px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute; right: 18px; top: 13px;
  background: var(--fun1);
  color: #fff;
  border: none;
  font-size: 1.65rem;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(40,81,107,0.09);
  z-index: 701;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--primaryLight);
  color: #fff;
}
/* Hide modal/banners on trigger */
.cookie-banner.hide {
  display: none !important;
}
.cookie-modal-overlay.hide {
  display: none !important;
}

/* ==================
   PLAYFUL DECORATIVE ACCENTS
   ================== */
.feature-grid li:after {
  content: '';
  position: absolute;
  top: 12px; right: 14px;
  width: 18px; height: 18px;
  background: var(--fun3);
  opacity: 0.17;
  border-radius: 50%;
  z-index: 0;
}
.feature-grid li:nth-child(2):after {
  background: var(--fun1);
}
.feature-grid li:nth-child(3):after {
  background: var(--fun2);
}
.feature-grid li:nth-child(4):after {
  background: var(--secondary);
}
.about-values ul li:after {
  content: '';
  position: absolute;
  left: 17px; top: 13px;
  width: 11px; height: 11px;
  background: var(--fun3);
  border-radius: 40%;
  opacity: 0.12;
}

.card {
  animation: playful-bounce-in 0.65s cubic-bezier(.18,0,.77,1) both;
}
@keyframes playful-bounce-in {
  from { transform: translateY(28px) scale(0.96) rotate(-2.5deg); opacity: 0.25; }
  70%  { transform: translateY(-3px) scale(1.03) rotate(1deg);}
  to   { transform: translateY(0) scale(1) rotate(-1deg);opacity: 1; }
}

.cta-btn,.main-nav .cta-btn {
  animation: pop-in-cta 0.75s cubic-bezier(.19,1,.22,1) both;
}
@keyframes pop-in-cta {
  0% { opacity: 0; transform: scale(0.8) rotate(-6deg);}
  60% { opacity: 1; transform: scale(1.08) rotate(2deg);}
  100%{ opacity: 1; transform: scale(1) rotate(0);}
}

/* =============
   UTILITIES & GENERAL SPACING
   ============= */
.section h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}
.section {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 6px 44px 0 rgba(135,192,231,0.06);
}

/* Spacing between all sections as per requirements */
main > section, .section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}

.card,
.feature-grid li,
.faq-item,
.testimonial-card,
.feature-item,
.about-values ul li,
.features ul li,
.success-factors ul li,
.legal ul li,
.contact-block li,
.contact-card li {
  margin-bottom: 20px !important;
}

/* Remove bottom margin for last items */
.card-container > .card:last-child,
.feature-grid > li:last-child,
.faq-accordion > .faq-item:last-child,
.testimonials .testimonial-card:last-child {  margin-bottom: 0 !important; }
@media (max-width:950px) {
  .feature-grid,
  .about-values ul,
  .features ul,
  .success-factors ul,
  .legal ul {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li,
  .card {
    flex: 1 1 100%;
    min-width: 98%;
  }
}

/* ==============
   RESPONSIVE DESIGN
   ============= */
@media (max-width:950px) {
  header .container,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
}
@media (max-width:768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .feature-grid,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .map-block {
    flex-direction: column;
    gap: 10px; align-items: flex-start;
    padding: 16px 6px;
  }
  .hero {
    padding: 28px 0 22px 0;
  }
  .hero h1 { font-size: 2rem; }
  .section {
    padding: 24px 4px !important;
  }
}

/* Reduce padding for cookie banner/modal on mobile */
@media (max-width: 550px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 6px 16px 6px;
    font-size: 1rem;
    gap: 13px;
  }
  .cookie-modal {
    padding: 18px 8px 8px 9px;
    min-width: 95vw;
    max-width: 99vw;
  }
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6FAFD;
}
h1, h2, h3, h4, h5, h6, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* =============
   PLAYFUL MICRO-INTERACTIONS
   ============= */
.cta-btn:active {
  transform: scale(.98) rotate(-1.2deg);
}
.card:active, .feature-grid li:active, .faq-item:active {
  transform: scale(0.98) rotate(-3deg);
}
.feature-grid li, .card, .testimonial-card, .faq-item {
  transition: box-shadow .2s, transform .13s;
}

a:focus-visible, .cta-btn:focus-visible, .main-nav a:focus-visible, .mobile-nav a:focus-visible {
  outline: 2px dashed var(--fun1);
  outline-offset: 2px;
}

/* ===============
   PRINT SUPPORT: Hide navigation & banner
   =============== */
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .cookie-modal-overlay, footer { display: none !important; }
}

/* ==========================
   END OF STYLE.CSS          
   ========================== */
