/* =======================
   CSS RESET & NORMALIZE
   ======================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { font-size: 16px; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #22324A;
  background-color: #F8FAFE;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.18s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
:focus-visible { outline: 2px solid #0084D5; outline-offset: 2px; }

/* =========================
    PASTEL BRAND VARIABLES
   ========================= */
:root {
  --brand-primary: #134B8A;
  --brand-primary-soft: #6278A5;
  --brand-secondary: #F2F2F2;
  --brand-accent: #FDBA2D;
  --brand-accent-soft: #FFF3DF;
  --pastel-blue: #D8E8FA;
  --pastel-mint: #E0F8F2;
  --pastel-lavender: #ECE6FF;
  --pastel-pink: #FFE6F0;
  --pastel-yellow: #FFF6D9;
  --pastel-bg: #F8FAFE;
  --text-dark: #22324A;
  --text-muted: #6278A5;
  --shadow: 0 4px 24px rgba(19,75,138,0.06);
  --shadow-card: 0 2px 8px rgba(19,75,138,0.08);
  --border-radius: 18px;
  --radius-small: 10px;
  --transition: 0.22s cubic-bezier(.55,.32,.13,1);
  --space-8: 8px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =========================
      GLOBAL TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: var(--space-16);
}
h1 { font-size: 2.4rem; line-height: 1.14; margin-bottom: var(--space-20); }
h2 { font-size: 1.75rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4, h5, h6 { font-size: 1.1rem; }
p { margin-bottom: var(--space-16); font-size: 1.1rem; }
strong { color: var(--brand-primary); font-weight: 600; font-family: var(--font-display); }
small { font-size: 0.95rem; color: var(--text-muted); }

/* =========================
         LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  padding-left: var(--space-16);
  padding-right: var(--space-16);
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-bg);
  border-radius: var(--border-radius);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--space-24);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.text-section {
  background: var(--pastel-mint);
  border-radius: var(--border-radius);
  padding: var(--space-20) var(--space-16);
  margin-bottom: 32px;
}

/* =========================
         HERO SECTION
   ========================= */
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 60%, var(--pastel-mint) 100%);
  padding: 64px 0 32px 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 26px 0 rgba(85, 146, 194, 0.08);
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.52);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  padding: 40px 20px;
  max-width: 600px;
  text-align: center;
}
.hero h1 { color: var(--brand-primary); font-size: 2.7rem; margin-bottom: var(--space-24); }
.hero p { font-size: 1.2rem; font-family: var(--font-body); color: var(--brand-primary-soft); margin-bottom: var(--space-24); }

/* =========================
      HEADER & NAVIGATION
   ========================= */
header {
  background: #fff;
  box-shadow: var(--shadow-card);
  z-index: 101;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: var(--space-16);
}
header nav {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}
header nav a {
  padding: 6px 10px;
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius-small);
}
header nav a:hover,
header nav a:focus {
  background: var(--pastel-blue);
  color: var(--brand-accent);
}
header a.btn-primary {
  margin-left: var(--space-16);
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: var(--border-radius);
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: var(--border-radius);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-primary-soft);
  color: #fff;
  box-shadow: 0 0 0 3px var(--pastel-blue);
}

/* =========================
    MOBILE MENU OVERLAY
   ========================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(246, 250, 254, 0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.55,.32,.13,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  cursor: pointer;
  z-index: 10001;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--brand-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  margin-top: 90px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  padding: 15px 12px 15px 0;
  border-radius: var(--radius-small);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--pastel-blue);
  color: var(--brand-accent);
}

@media (max-width: 1024px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
}

/* =========================
         BUTTONS
   ========================= */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(19,75,138,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  min-width: 170px;
  min-height: 46px;
  padding: 12px 18px;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(90deg, var(--pastel-lavender), var(--brand-accent-soft));
  color: var(--brand-primary);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--brand-accent);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(253,186,45,0.17);
}
.btn-secondary {
  background: var(--pastel-lavender);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary-soft);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* =============================
      TABLE (Prices etc)
   ============================= */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-24);
  overflow: hidden;
  font-size: 1.08rem;
}
thead {
  background: var(--pastel-blue);
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #f0f4f8;
}
th { font-family: var(--font-display); font-weight: 600; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover {
  background: var(--pastel-mint);
  transition: background 0.18s;
}

/* =========================
         LISTS
   ========================= */
ul, ol {
  margin-bottom: var(--space-20);
}
ul li, ol li {
  display: flex;
  align-items: flex-start;
  font-size: 1.08rem;
  margin-bottom: var(--space-8);
  gap: 10px;
  line-height: 1.6;
}
ul li img, ol li img {
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

/* =========================
      CARDS AND FEATURES
   ========================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-blue);
  padding: 20px 18px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 40px 0 rgba(22, 75, 138, 0.17); transform: translateY(-3px) scale(1.012); }

/* =========================
        TESTIMONIALS
   ========================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 22px;
  background: var(--pastel-yellow);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 1.13rem;
  max-width: 600px;
  transition: box-shadow var(--transition);
}
.testimonial-card strong { color: var(--brand-primary); }
.testimonial-card p {
  font-style: italic;
  color: #53456A;
  margin-bottom: 2px;
  font-size: 1.08rem;
}
.testimonial-card span { color: #EDBD3D; letter-spacing: 1.2px; font-size: 1.2rem; }
.testimonial-card:hover { box-shadow: 0 8px 40px 0 rgba(255,198,89,0.13); }

/* =============================
        MAP PLACEHOLDER
   ============================= */
.map-placeholder {
  width: 100%;
  height: 220px;
  border-radius: var(--border-radius);
  background: var(--pastel-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary-soft);
  font-style: italic;
  font-size: 1.08rem;
  margin-top: 18px;
  box-shadow: 0 1px 7px rgba(19,75,138,0.06);
}

/* =========================
        FOOTER STYLES
   ========================= */
footer {
  background: #fff;
  box-shadow: 0 -1px 8px rgba(19,75,138,0.04);
  margin-top: 80px;
  padding: 40px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--brand-primary);
  padding: 3px 0;
  font-size: 1.01rem;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-muted);
  font-size: 1rem;
  min-width: 210px;
  margin-bottom: 12px;
}
.footer-contact img { width: 40px; height: 40px; margin-bottom: 4px; }
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.footer-social a img {
  width: 32px; height: 32px;
  filter: grayscale(12%) brightness(0.98) saturate(1.08);
  opacity: 0.88; transition: opacity var(--transition), filter var(--transition);
}
.footer-social a:hover img { filter: none; opacity: 1; }
footer small {
  display: block;
  margin-top: 18px;
  color: var(--text-muted);
}

/* =========================
      COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--pastel-lavender);
  box-shadow: 0 -2px 16px 0 rgba(22, 75, 138, 0.09);
  z-index: 10000;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  animation: cookieSlideUp 0.52s cubic-bezier(.68,-0.35,.36,1.22) 1;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(110%); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  text-align: center;
  color: var(--brand-primary);
  font-size: 1.08rem;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btns button {
  font-size: 1rem;
  font-family: var(--font-display);
  padding: 10px 18px;
  border-radius: var(--border-radius);
  border: none;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-btns .cookie-accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-btns .cookie-accept:hover, .cookie-btns .cookie-accept:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btns .cookie-reject {
  background: var(--pastel-blue);
  color: var(--brand-primary);
}
.cookie-btns .cookie-reject:hover, .cookie-btns .cookie-reject:focus {
  background: #fff;
  color: var(--brand-primary-soft);
}
.cookie-btns .cookie-settings {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.cookie-btns .cookie-settings:hover, .cookie-btns .cookie-settings:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* Modal for Cookie Preferences */
.cookie-modal {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(34, 50, 74, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity .22s;
}
.cookie-modal.hidden { display: none; opacity: 0; }
.cookie-modal-dialog {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 36px 32px 28px 32px;
  max-width: 400px;
  width: 95vw;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalBounceIn .38s cubic-bezier(.68,-0.27,.36,1.32) 1;
}
@keyframes modalBounceIn {
  0% { transform: translateY(-80px) scale(0.97); opacity: .6; }
  45% { transform: translateY(10px) scale(1.03); }
  90% { transform: translateY(-6px) scale(0.995); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.cookie-switch {
  width: 34px; height: 20px;
  border-radius: 10px;
  background: var(--pastel-lavender);
  position: relative;
  margin-right: 8px;
}
.cookie-switch input[type="checkbox"] { display: none; }
.cookie-switch-label {
  display: block;
  width: 100%; height: 100%;
  cursor: pointer;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--brand-primary);
  border-radius: 50%;
  transition: left .21s ;
}
.cookie-switch input:checked + .cookie-switch-label .cookie-switch-slider {
  left: 16px;
  background: var(--brand-accent);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius-small);
  background: var(--pastel-blue);
  color: var(--brand-primary);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-actions .cookie-save {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-modal-actions .cookie-save:hover { background: var(--brand-primary); color: #fff; }
.cookie-modal-actions .cookie-cancel:hover { background: var(--pastel-mint); }

/* =========================
    RESPONSIVE STYLES
   ========================= */
@media (max-width: 1024px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper, .card-container, .card-grid, .content-grid {
    gap: 16px;
  }
  .hero { padding: 46px 0 20px 0; }
  .hero .content-wrapper { padding: 26px 12px; }
  footer .container { gap: var(--space-16); }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding-left: 3vw; padding-right: 3vw; }
  .content-wrapper, .card-container, .card-grid, .content-grid { gap: 12px; }
  .section { padding: 32px 6vw; margin-bottom: 40px; }
  .card, .feature-item {
    padding: 14px 8px;
  }
  .footer-contact, .footer-nav, .footer-social {
    min-width: unset;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0; padding-right: 0;
    gap: var(--space-16);
  }
  .footer-social { margin-bottom: 10px; }
  .mobile-menu { font-size: 1.12rem; }
  .map-placeholder { height: 140px; font-size: 0.99rem; }
  .hero .content-wrapper { padding: 18px 8px; }
}
@media (max-width: 700px) {
  .hero { border-radius: 0; }
  .section { border-radius: 0; }
  h1 { font-size: 2.03rem !important; }
  h2 { font-size: 1.28rem !important; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.52rem !important; }
  .testimonial-card { font-size: 1rem; padding: 16px 7px; }
  .btn-primary, .btn-secondary { padding: 10px 8px; min-width: 110px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}

/* =========================
  SPACING, GAPS & UTILITIES
   ========================= */
.mb-20 { margin-bottom: 20px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mt-32 { margin-top: 32px!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }
.w-100 { width: 100%!important; }
.center { text-align: center; }

/* =========================
     MICROINTERACTIONS
   ========================= */
a, button, .btn-primary, .btn-secondary {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border var(--transition);
}
.card, .feature-item, .testimonial-card {
  will-change: transform, box-shadow;
}

/* =========================
      SOFT PASTEL EFFECTS
   ========================= */
.section {
  background: linear-gradient(113deg, var(--pastel-mint) 90%, var(--pastel-blue) 100%);
  box-shadow: var(--shadow-card);
}
.text-section {
  background: linear-gradient(89deg, var(--pastel-mint) 70%, var(--pastel-pink) 100%);
}
.btn-primary {
  box-shadow: 0 2px 12px 0 rgba(253,186,45,0.09);
  letter-spacing: 0.02em;
}

/* =========================
  ENSURE NO OVERLAPPING
   ========================= */
.card, .testimonial-card, .feature-item { margin-bottom: 20px; }
.content-wrapper > *, .section > .container > *, .content-grid > *, .card-container > * {
  margin-bottom: 0;
}
/* End of CSS */
