/* --- 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;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #213A5A;
  background-color: #FCFDFF;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #36A87D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #213A5A;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}
th, td {
  padding: 14px 12px;
  font-size: 1rem;
  border-bottom: 1px solid #F0ECEC;
}
th {
  background: #F6EBFA;
  color: #213A5A;
  font-weight: 600;
  text-align: left;
}
tr:last-child td {
  border-bottom: none;
}
blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #1B2342;
  background: #FCF7FA;
  border-left: 5px solid #A7B7FF;
  margin: 0 0 12px 0;
  padding: 18px 24px;
  border-radius: 12px 16px 16px 12px;
}

/* --- Brand Colors (Soft Pastel Variant) --- */
:root {
  --primary: #213A5A;
  --secondary: #36A87D;
  --accent: #F7F7F6;
  --pastel-blue: #CFE6FF;
  --pastel-green: #D3F5EC;
  --pastel-lilac: #E5DFFC;
  --pastel-pink: #FFD6E8;
  --pastel-yellow: #FFF8CB;
  --pastel-grey: #F5F6FA;
  --neutral: #ffffff;
  --shadow: 0 4px 24px 0 rgba(67,92,155,0.06);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #213A5A;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.12rem;
}
p, li, blockquote, table, label {
  font-size: 1rem;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #2D456B;
}
/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  background: #FCF7FA;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(86, 59, 89, 0.08);
  padding: 20px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Hero Section / Accent Sections --- */
.hero, .cta-section, .confirmation, .callout, .faq-section, .tips, .benefits-section, .expert-tip, .parking-rules, .comparison-section, .accent {
  background: linear-gradient(135deg, #E5DFFC 0%, #D3F5EC 60%, #FFF8CB 100%);
  padding: 60px 0 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 38px 38px/0 0 30px 30px;
}

.cta-section .cta.primary,
.confirmation .cta.primary {
  margin-top: 20px;
}

/* --- Features Section --- */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}
.features ul li {
  flex: 1 1 250px;
  padding: 28px 20px 22px 20px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow);
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.18s;
}
.features ul li:hover {
  box-shadow: 0 6px 28px 0 rgba(85,175,156,0.13);
  transform: translateY(-2px) scale(1.01);
}
.features ul img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}

/* --- Navigation --- */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(62,91,142,0.07);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.desktop-nav > a {
  padding: 8px 16px;
  color: var(--primary);
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.08rem;
  transition: background 0.15s, color 0.15s;
}
.desktop-nav > a.cta.primary {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  margin-left: auto;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 rgba(65,200,148,0.06);
  transition: background 0.20s, box-shadow 0.20s;
}
.desktop-nav > a.cta.primary:hover {
  background: #25725a;
  box-shadow: 0 6px 16px 0 rgba(54,168,125,0.15);
}
.desktop-nav > a:hover, .desktop-nav > a:focus {
  background: #F5F6FA;
  color: #36A87D
}
.desktop-nav img {
  height: 38px;
  width: auto;
  margin-right: 24px;
}

.mobile-menu-toggle {
  background: #FFF;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 12px;
  display: none;
  position: relative;
  z-index: 1050;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(33,58,90,0.13);
  transition: background 0.14s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #36A87D;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FCFDFF;
  box-shadow: 0 8px 32px 0 rgba(33,58,90,0.19);
  z-index: 1200;
  transform: translateX(-110%);
  transition: transform 0.44s cubic-bezier(.3,1.2,.5,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #213A5A;
  align-self: flex-end;
  margin: 18px 22px 10px 0;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 10px;
  transition: background 0.12s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F5F6FA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 12px;
  padding: 0 28px;
  gap: 12px;
}
.mobile-nav a {
  color: #1B2342;
  padding: 18px 0 6px 0;
  font-size: 1.15rem;
  font-weight: 500;
  border-bottom: 1px solid #F0E8F6;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #36A87D;
}

@media (max-width: 1020px) {
  .container {
    max-width: 94vw;
  }
  .desktop-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 8px;
  }
}
@media (max-width: 850px) {
  .desktop-nav > a.cta.primary {
    margin-left: 14px;
  }
}
@media (max-width: 790px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 14px;
    right: 25px;
  }
  header {
    position: relative;
    min-height: 66px;
  }
}

/* --- Footer --- */
footer {
  background: #F5F6FA;
  padding: 32px 0 24px 0;
  margin-top: 84px;
  box-shadow: 0 -2px 24px 0 rgba(107,93,193,0.05);
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
footer img {
  width: 50px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.footer-nav a {
  color: #48728b;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #36A87D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-contact p {
  display: flex;
  align-items: center;
  color: #213A5A;
  font-size: 1rem;
  opacity: 0.82;
}

/* --- CTA Buttons --- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(54,168,125,0.12);
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.17s, box-shadow 0.18s, transform 0.15s;
}
.cta.primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(54,168,125,0.12);
}
.cta.primary:hover, .cta.primary:focus {
  background: #25725a;
  box-shadow: 0 10px 28px 0 rgba(54,168,125,0.16);
  transform: translateY(-1px) scale(1.02);
}
.cta.secondary {
  background: #e5dffc;
  color: #213A5A;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(86,59,89,.09);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #ffe6fa;
  color: #36A87D;
}

/* --- Accent and Special Sections --- */
.accent,
.tips,
.faq-section,
.benefits-section,
.expert-tip,
.confirmation {
  background: linear-gradient(128deg, #F5F6FA 0%, #FFD6E8 58%, #CFE6FF 100%);
}
.callout {
  background: linear-gradient(126deg,#D3F5EC 0%, #E5DFFC 100%);
}

/* --- Testimonial Accessibility --- */
.testimonial-card,
.content-wrapper.testimonial-card {
  background: #FAF6FF;
  color: #1A202C;
  box-shadow: 0 4px 24px 0 rgba(33,58,90,0.08);
  border-radius: 18px;
}
.testimonial-card strong, .content-wrapper.testimonial-card strong {
  color: #36A87D;
  display: block;
  margin-top: 10px;
  font-size: 1.04em;
}

/* --- List Styles --- */
ul li, ol li {
  margin-bottom: 13px;
  list-style: none;
  position: relative;
  padding-left: 24px;
  color: #213A5A;
}
ul li strong, ol li strong {
  color: #36A87D;
  font-weight: 700;
}
ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FAABFF;
  opacity: 0.28;
}

.features ul li:before, .benefits-section ul li:before, .faq-section ul li:before, .tips ul li:before {
  background: #36A87D;
  opacity: 0.16;
}

/* --- Contact Info Card --- */
.contact-info {
  background: #F5F7FD;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  color: #213A5A;
  box-shadow: 0 2px 10px 0 rgba(92,174,201,0.08);
}
.contact-info img {
  width: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

/* --- Legal Sections --- */
.legal {
  background: #FCFDFF;
  border-radius: 24px;
  padding: 40px 22px;
  box-shadow: 0 8px 26px 0 rgba(184,196,245,0.11);
  margin: 40px 0;
}

/* --- Table Styles --- */
table {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(192,196,245,0.08);
  overflow: hidden;
}
th {
  background: #E5DFFC;
  color: #213A5A;
  font-size: 1.06rem;
}
td {
  background: #fff;
  color: #2D456B;
  font-size: 1rem;
}
tr:nth-child(even) td {
  background: #FAFAFC;
}

/* --- Spacing & Gaps --- */
section, .section, .accent {
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
nav, .desktop-nav, .footer-nav, .card-container, .content-grid, .features ul, .text-image-section, .testimonial-card, .feature-item, .contact-info {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}

/* --- Microinteractions & Transitions --- */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, transform 0.17s;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(100deg, #F5F6FA 70%, #FDE6FF 100%);
  color: #213A5A;
  width: 100%;
  padding: 24px 10px 22px 10px;
  box-shadow: 0 -2px 30px 0 rgba(33,58,90,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 1600;
  gap: 24px;
  font-size: 1.04rem;
  flex-wrap: wrap;
  animation: cookieSlideIn 0.7s cubic-bezier(.24,.7,.37,1.01);
}
@keyframes cookieSlideIn {
  from {transform: translateY(120%); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin-bottom: 0;
  flex: 2;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.13s;
  font-weight: 500;
}
.cookie-banner .accept {
  background: #36A87D;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #2e936e;
}
.cookie-banner .reject {
  background: #FFD6E8;
  color: #213A5A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e5dffc;
}
.cookie-banner .settings {
  background: #E5DFFC;
  color: #213A5A;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F5F6FA;
}

/* --- Cookie Preferences Modal --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,38,53,0.45);
  z-index: 1650;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.25s;
}
@keyframes modalFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 28px 0 rgba(53,29,99,0.25);
  padding: 38px 28px 28px 28px;
  min-width: 330px;
  max-width: 94vw;
  color: #213A5A;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.37rem;
  margin-bottom: 14px;
  color: #213A5A;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 22px;
  top: 24px;
  border: none;
  background: none;
  font-size: 2rem;
  color: #36A87D;
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 8px 0;
}
.cookie-modal label {
  font-size: 1.09rem;
  color: #213A5A;
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #e5dffc;
  border-radius: 18px;
  position: relative;
  outline: none;
  vertical-align: bottom;
  transition: background 0.17s;
  margin-right: 4px;
}
.cookie-modal .toggle-switch:checked {
  background: #36A87D;
}
.cookie-modal .toggle-switch::-webkit-slider-thumb,
.cookie-modal .toggle-switch::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(54,168,125,0.24);
}
.cookie-modal .essential {
  font-style: italic;
  color: #7c8ca2;
}
.cookie-modal .save-preferences {
  background: #36A87D;
  color: #fff;
  padding: 12px 24px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .save-preferences:hover {
  background: #2e936e;
}

/* --- Responsive --- */
@media (max-width: 1020px) {
  .content-wrapper, .footer .content-wrapper {
    gap: 16px;
  }
  .features ul {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .hero, .cta-section, .confirmation, .accent {
    padding: 38px 0;
  }
  .features ul li {
    min-width: 160px;
  }
}
@media (max-width: 790px) {
  .content-grid, .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
  footer {
    margin-top: 52px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
    font-size: 1em;
  }
  .hero, .cta-section, .confirmation, .accent, .callout {
    padding: 24px 0 32px 0;
    border-radius: 16px 16px 24px 24px/11px 11px 22px 22px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .section, section {
    padding: 16px 2px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
  .hero, .cta-section, .accent, .confirmation, .callout {
    padding: 12px 0 16px 0;
    border-radius: 8px 8px 13px 10px/8px 8px 10px 8px;
  }
  footer {
    padding: 16px 0 12px 0;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 6px 16px 8px;
    font-size: 0.98em;
  }
  .cookie-banner {
    font-size: 0.98rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .card {
    padding: 10px 7px 12px 12px;
  }
}
