/* ===== CSS RESET & BASE ===== */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #153158;
  background: #F3F7FA;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #1DB893;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #153158;
  text-decoration: underline;
}
ul, ol {
  padding-left: 28px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: none;
}

/* ====== BRAND TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #153158;
  line-height: 1.14;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  color: #3A4A6C;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #153158;
}

/* ===== SPACING & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(29,184,147,0.04), 0 2px 6px rgba(21,49,88,0.03);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  width: 100%;
  justify-content: flex-start;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #F3F7FA;
  border-radius: 20px;
  padding: 20px 18px 20px 18px;
  box-shadow: 0 2px 8px rgba(21,49,88,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 26px rgba(29,184,147,0.09);
  transform: translateY(-4px) scale(1.03);
}
.features-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.section ul {
  margin-bottom: 6px;
}
.section li {
  margin-bottom: 9px;
  color: #446195;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}
.section li:before {
  content: ''; 
  display: inline-block; 
  width: 9px; height: 9px; 
  background: #1DB893; 
  border-radius: 50%; 
  position: absolute; left: 0; top: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 8px rgba(21,49,88,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  min-width: 240px;
  max-width: 460px;
  flex: 1 1 260px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(21,49,88,0.08);
  transform: translateY(-2px) scale(1.02);
}

.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;
  background: #FDF6EC;
  border-radius: 20px;
  margin-top: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 169, 79,0.05);
  border: 1px solid #FBE3C3;
  color: #153158;
  max-width: 580px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #153158;
  font-style: italic;
  font-size: 1.06rem;
  margin-bottom: 3px;
}
.testimonial-card strong {
  color: #1DB893;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 26px rgba(255,169,79,0.13);
  transform: scale(1.016);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.usp-highlights, .approach-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  font-size: 1.01rem;
}
.usp-highlights span, .approach-highlights span {
  background: #F3F7FA;
  padding: 11px 24px 11px 8px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(21,49,88,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.usp-highlights img, .approach-highlights img {
  width: 22px;
  height: 22px;
}

.services-overview {
  margin-top: 10px;
}

.benfit-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benfit-list li {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.benfit-list img {
  width: 18px;
  height: 18px;
  margin-right: 9px;
}

.faq-teaser {
  background: #F3F7FA;
  border-radius: 14px;
  padding: 18px 13px 18px 13px;
  margin-top: 18px;
}
.faq-teaser h3 {
  margin-bottom: 7px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 12px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid #E3EEF5;
  color: #153158;
}
.pricing-table th {
  background: #F3F7FA;
  color: #1DB893;
  font-size: 1.13rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  padding: 36px 0 30px 0;
  color: #153158;
}
.footer-nav a {
  color: #1DB893;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #FFB81C;
  text-decoration: underline;
}

/* ===== HEADER/NAV ===== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(21,49,88,0.05);
  position: relative;
  z-index: 33;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 18px 20px 16px 20px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #153158;
  border-radius: 7px;
  padding: 7px 11px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3F7FA;
  color: #1DB893;
}
.cta-btn {
  background: #1DB893;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 11px 32px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 16px rgba(29,184,147,0.12);
  text-decoration: none;
  display: inline-block;
  transition: background 0.22s, box-shadow 0.18s, transform 0.19s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #153158;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(21,49,88,0.11);
}

header img {
  height: 52px;
  max-width: 165px;
  border-radius: 8px;
  margin-right: 20px;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  background: #F3F7FA;
  border: none;
  color: #1DB893;
  font-size: 2.25rem;
  border-radius: 11px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(29,184,147,0.10);
  margin-left: 20px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFE8C0;
  color: #153158;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  z-index: 555;
  padding: 0;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  box-shadow: 0 8px 44px rgba(21,49,88,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #153158;
  padding: 22px;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 7px;
  margin-right: 7px;
  z-index: 12;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #1DB893;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 15px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  color: #1DB893;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.19s,color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F7FA;
  color: #FFB81C;
}

@media (max-width: 950px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 540px) {
  header img {
    height: 38px;
    max-width: 108px;
  }
  .container {
    padding: 0 8px;
  }
  .footer-nav {
    font-size: 12px;
    gap: 12px 10px;
    padding: 16px 0 16px 0;
  }
  .section {
    padding: 18px 5px;
    margin-bottom: 26px;
    border-radius: 14px;
  }
}

/* ===== BUTTONS & INTERACTIVES ===== */
button, .cta-btn, input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  background: #1DB893;
  color: #fff;
  padding: 10px 26px;
  border-radius: 23px;
  transition: background 0.18s, box-shadow 0.18s, color 0.16s, transform 0.12s;
  box-shadow: 0 2px 10px rgba(29,184,147,0.05);
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #153158;
  color: #fff;
}
input[type="submit"]:active {
  transform: scale(0.98);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #153158;
  color: #fff;
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 28px rgba(21,49,88,0.17);
  z-index: 2000;
  animation: cookieSlideIn 0.7s cubic-bezier(.87,0,.13,1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(120px); opacity: 0; }
  76% { opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.cookie-btn {
  border: none;
  border-radius: 21px;
  padding: 10px 24px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.18s, color 0.14s;
  box-shadow: 0 2px 8px rgba(29,184,147,0.06);
}
.cookie-btn.accept {
  background: #1DB893;
  color: #fff;
}
.cookie-btn.accept:hover { background: #12A477; }
.cookie-btn.reject {
  background: #FFE8C0;
  color: #153158;
}
.cookie-btn.reject:hover { background: #FFD38C; color: #1DB893; }
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.2px solid #fff;
}
.cookie-btn.settings:hover { background: #fff; color: #153158; }

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(21,49,88,0.19);
  z-index: 2100;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #153158;
  border-radius: 26px;
  box-shadow: 0 8px 34px rgba(21,49,88,0.11);
  min-width: 275px;
  max-width: 340px;
  padding: 38px 27px 24px 27px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalUp 0.4s cubic-bezier(.9,0,.16,1);
}
@keyframes modalUp {
  0% { transform: translateY(38px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #1DB893;
  font-size: 1.24rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type='checkbox'] { /* toggle switch style */
  appearance: none;
  width: 36px;
  height: 18px;
  background: #F3F7FA;
  outline: none;
  border-radius: 11px;
  transition: background 0.17s;
  position: relative;
  margin-right: 7px;
}
.cookie-category input[type='checkbox']:checked {
  background: #1DB893;
}
.cookie-category input[type='checkbox']::after {
  content: '';
  position: absolute;
  top: 2.5px; left: 4px;
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 13px;
  transition: left 0.18s, background 0.12s;
  box-shadow: 0 1px 3px rgba(21,49,88,0.13);
}
.cookie-category input[type='checkbox']:checked::after {
  left: 19px;
}
.cookie-category input[type='checkbox'][disabled] {
  opacity: .55;
  cursor: not-allowed;
}
.cookie-modal-close {
  position: absolute;
  top: 7px; right: 15px;
  background: none;
  border: none;
  color: #1DB893;
  font-size: 1.42rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: #FFB81C;
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
}

@media (max-width: 540px) {
  .cookie-modal {
    padding: 24px 7vw 19px 7vw;
    min-width: 80vw;
  }
  .cookie-banner {
    padding: 16px 7px 17px 7px;
  }
}

/* ===== RESPONSIVE LAYOUTS (MOBILE-FIRST) ===== */
@media (max-width: 1020px) {
  .container {
    max-width: 97vw;
  }
  .features-grid > div {
    min-width: 160px;
    padding: 18px 8px 18px 8px;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 1.66rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  .features-grid,
  .content-grid,
  .footer-nav,
  .card-container { flex-direction: column; gap: 20px; }
  .main-nav { gap: 11px; }
}
@media (max-width: 670px) {
  .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
    padding: 12px 8px;
    border-radius: 13px;
  }
  .section {
    border-radius: 12px;
  }
  .features-grid > div {
    border-radius: 12px;
    padding: 13px 6px 13px 6px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start !important;
  }
}

/* ===== FORMS (if present) ===== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
  width: 100%;
  border: 1.5px solid #E3EEF5;
  border-radius: 13px;
  padding: 10px 13px;
  font-size: 1rem;
  color: #153158;
  background: #F3F7FA;
  margin-bottom: 17px;
  transition: border 0.15s;
}
input:focus, textarea:focus {
  border: 1.5px solid #1DB893;
}
label {
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #446195;
  margin-bottom: 4px;
  display: block;
}

/* ===== CARD & GRID HELPERS ===== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== HIGHLIGHTS/INFO ELEMENTS ===== */
.address-map, .public-transport-tips, .services-overview {
  background: #F3F7FA;
  border-radius: 10px;
  padding: 14px 13px;
  margin-top: 13px;
  font-size: 0.98rem;
}
.address-map strong, .services-overview strong {
  color: #1DB893;
}

/* ===== ANIMATIONS ===== */
a, button, .cta-btn, .main-nav a, .mobile-nav a, .features-grid > div, .card, .testimonial-card {
  transition: background 0.25s, color 0.18s, box-shadow 0.2s, transform 0.18s;
}

/* ===== PRINT REDUCED UI ===== */
@media print {
  header, .main-nav, .cta-btn, .footer-nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section, .container { box-shadow: none !important; background: #fff !important; }
}
