/* =======================================================
   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, menu, 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, 
main, 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;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #F4F7F9;
}
*,:before,:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
address {
  font-style: normal;
}

body {
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #234165;
  line-height: 1.6;
  background: #F4F7F9;
  min-height: 100vh;
}

a {
  color: #234165;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #A9CB38;
  text-decoration: underline;
}
:focus {
  outline: 2px solid #A9CB38;
  outline-offset: 2px;
}

/* =======================================================
   TYPOGRAPHY SCALE & HEADINGS
   ======================================================= */
h1, .h1 {
  font-family: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h2, .h2 {
  font-family: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.25px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote {
  font-size: 1rem;
}

@media (min-width: 600px) {
  h1, .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.25rem;
  }
}

.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #234165;
  margin-bottom: 24px;
  font-weight: 400;
}

strong {
  font-weight: 600;
  color: #234165;
}

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  background: #fff;
  color: #234165;
  border-left: 4px solid #A9CB38;
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(35,65,101,0.06);
}
blockquote span {
  display: block;
  margin-top: 8px;
  font-size: 0.95em;
  font-style: normal;
  color: #A9CB38;
}

/* =======================================================
   CONTAINER & LAYOUT
   ======================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(35,65,101,0.06);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(35,65,101,0.12);
  transform: translateY(-2px) scale(1.018);
}

.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(35,65,101,0.09);
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(35,65,101,0.18);
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  color: #234165;
  font-size: 1em;
  margin-left: auto;
  align-items: center;
}
.testimonial-name {
  font-weight: bold;
}
.testimonial-location {
  color: #A9CB38;
}
.testimonial-stars {
  color: #A9CB38;
  font-size: 1.2em;
  letter-spacing: 1px;
  margin-left: 8px;
}

.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(35,65,101,0.06);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 6px 20px rgba(35,65,101,0.09);
  transform: translateY(-2.5px) scale(1.01);
}

/* === Home & Features Grid === */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  list-style: none;
  margin: 0;
}
.features .feature-grid li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,65,101,0.05);
  flex: 1 1 240px;
  min-width: 180px;
}
.features .feature-grid img {
  width: 36px;
  height: 36px;
}

/* === Services Page === */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-item {
  flex: 1 1 320px;
  margin-bottom: 24px;
}
.service-benefit {
  margin-top: 10px;
  color: #A9CB38;
  font-weight: 500;
  font-size: 1em;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 30px;
}
.usp-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  color: #234165;
  box-shadow: 0 2px 8px rgba(35,65,101,0.04);
}
.usp-list img {
  width: 28px;
  height: 28px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(35,65,101,0.05);
}
.pricing-table thead th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #A9CB38;
  color: #234165;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px;
  text-align: left;
}
.pricing-table tbody td {
  font-size: 1rem;
  padding: 15px 16px;
  border-bottom: 1px solid #F4F7F9;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-notes ul {
  list-style: disc inside;
  color: #7492b8;
  margin: 12px 0 0 0;
  font-size: 0.98em;
  padding-left: 20px;
}

.included-features ul {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 16px;
  color: #234165;
}

/* FAQ Accordion */
.accordion h2, .accordion h3 {
  cursor: pointer;
  background: #f8fafc;
  padding: 15px 16px;
  border-radius: 8px;
  margin-bottom: 0;
  transition: background 0.2s;
}
.accordion h2:hover, .accordion h3:hover {
  background: #e9f0de;
}
.accordion > div {
  display: none;
  padding: 15px 18px 18px 18px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid #e4ecf5;
  box-shadow: 0 1px 3px rgba(35,65,101,0.04);
}
.accordion > .active + div {
  display: block;
  animation: fadeInAccordion 0.25s;
}
@keyframes fadeInAccordion {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero section */
.hero {
  background: linear-gradient(120deg,#F4F7F9 70%,#e9f0de 100%);
  padding: 56px 0 56px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  color: #234165;
  font-size: 2.4rem;
}
.hero .btn-primary {
  margin-top: 28px;
}

@media (min-width: 900px) {
  .hero {
    padding: 100px 0 90px 0;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
}


/* =======================================================
   BUTTONS
   ======================================================= */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  margin: 8px 0;
}
.btn-primary {
  background: #234165;
  color: #fff;
  box-shadow: 0 4px 16px rgba(35,65,101,0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: #A9CB38;
  color: #234165;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 6px 26px rgba(35,65,101,0.12);
}
.btn-secondary {
  background: #A9CB38;
  color: #234165;
  box-shadow: 0 2px 8px rgba(35,65,101,0.06);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #234165;
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 6px 26px rgba(35,65,101,0.12);
}

/* =======================================================
   HEADER & NAVIGATION (MAIN NAV)
   ======================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,65,101,0.06);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
.logo img {
  height: 48px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #234165;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A9CB38;
}
/* Active nav link can be managed by server/js/classes, e.g. .active */
.main-nav a.active {
  color: #A9CB38;
  font-weight: 700;
}

header .btn-primary {
  margin-left: 16px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  header .main-nav, header .btn-primary {
    display: none;
  }
}

/* =======================================================
   MOBILE BURGER MENU
   ======================================================= */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: #A9CB38;
  color: #234165;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(35,65,101,0.13);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #234165;
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 9px 32px rgba(35,65,101,0.18);
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.65,.05,.36,1);
  overscroll-behavior: contain;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #A9CB38;
  color: #234165;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  position: absolute;
  top: 19px;
  right: 20px;
  z-index: 1320;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(35,65,101,0.11);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #234165;
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 80px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #234165;
  font-size: 1.25rem;
  padding: 7px 0 7px 8px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e9f0de;
  color: #A9CB38;
}

@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none!important;
  }
}

/* Overlay background for menu (optional for UX clarity) */
.mobile-menu::after {
  content: '';
  display: block;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 1290;
  background: rgba(35,65,101,0.12);
  pointer-events: none;
}

/* Ensure burger only on small screens */
@media (min-width: 901px) {
  .mobile-menu-toggle { display: none!important; }
}
@media (max-width: 600px) {
  .mobile-nav a { font-size: 1.07rem; min-width: 130px; }
  .mobile-nav { margin-left: 10px; }
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: #f8fafc;
  border-top: 1px solid #e4ecf5;
  color: #234165;
  padding: 36px 0 18px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 0.99em;
}
.footer-nav a {
  color: #234165;
  opacity: 0.93;
  transition: color 0.16s, opacity 0.16s;
}
.footer-nav a:hover { color: #A9CB38; opacity: 1; }
.footer-logo img { height: 52px; margin-bottom: 3px; }
.footer-info {
  color: #7492b8;
  font-size: 0.98em;
  text-align: center;
}
@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-nav { margin-bottom: 0; }
}

/* =======================================================
   LEGAL/INFO/CONTENT PAGES
   ======================================================= */
.legal .text-section, .about .text-section {
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,65,101,0.04);
  padding: 24px 20px;
}
.legal ul, .about ul, .legal ol, .about ol {
  margin: 12px 0 12px 18px;
  padding-left: 18px;
  font-size: 1rem;
  color: #234165;
}
.legal h2, .about h2 {
  margin-top: 28px;
}

/* =======================================================
   CONTACT PAGE QUICK SECTIONS
   ======================================================= */
.contact-info ul, .contact-short ul, .booking-info ol {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.contact-info ul li, .contact-short ul li, .booking-info ol li {
  margin-bottom: 10px;
  font-size: 1.07em;
  color: #234165;
}
.map-link a {
  color: #A9CB38;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
  transition: color 0.16s;
}
.map-link a:hover {
  color: #234165;
}
.parking, .public-transport {
  background: #e9f0de;
  color: #234165;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 1em;
}

/* Confirmation page */
.confirmation .thank-you-message {
  font-size: 1.15rem;
  color: #234165;
  margin-bottom: 24px;
}
.next-steps ul {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 16px;
  color: #234165;
}

/* Preparation tips at FAQ page */
.preparation-tips {
  background: #e9f0de;
  border-radius: 8px;
  padding: 22px 20px;
  margin-top: 18px;
}
.preparation-tips ul {
  color: #234165;
}

/* =======================================================
   GENERAL LISTS, TABLES, OLs
   ======================================================= */
ul, ol {
  margin-bottom: 12px;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
/* Table general tweaks */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 24px;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(35,65,101,0.03);
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
  border-bottom: 1px solid #F4F7F9;
}
th {
  background: #e9f0de;
  color: #234165;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* =======================================================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(35,65,101,0.18);
  border-top: 1px solid #e4ecf5;
  padding: 28px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1em;
  transition: transform 0.28s cubic-bezier(.66,.33,.38,1), opacity 0.28s;
}
@media (min-width: 700px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 18px 32px 18px 32px;
    font-size: 1.08em;
  }
}
.cookie-banner.closed { display: none; }
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner button,
.cookie-banner .btn {
  padding: 9px 20px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-right: 3px;
  margin-bottom: 0;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #A9CB38;
  color: #234165;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #234165;
  color: #fff;
}
.cookie-banner .reject {
  background: #e9f0de;
  color: #234165;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #234165;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #234165;
  border: 1px solid #e4ecf5;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e9f0de;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,65,101,0.25);
  z-index: 1600;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.22s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(35,65,101,0.19);
  max-width: 420px;
  width: 90vw;
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInModal 0.25s;
  z-index: 1700;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-header {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #234165;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}
.cookie-modal-category label {
  font-weight: 500;
  color: #234165;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 11px;
  background: #e9f0de;
  position: relative;
  margin-right: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.18s;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle .dot {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #A9CB38;
  transition: left 0.17s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .dot {
  left: 18px;
  background: #234165;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 20px;
  font-size: 1em;
  border-radius: 5px;
}

/* Essential cookies marked */
.cookie-modal-category .essential {
  font-weight: 600;
  color: #A9CB38;
  margin-left: 8px;
  font-size: 0.95em;
}

/* =======================================================
   RESPONSIVE MEDIA QUERIES
   ======================================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 1000px) {
  .container { max-width: 740px; }
  .footer-logo img { height: 42px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .card, .feature-item, .service-item, .testimonial-card {
    min-width: 190px;
    padding: 16px 12px;
  }
  .card-container, .service-grid, .usp-list {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .footer-nav {
    gap: 8px;
    flex-direction: column;
  }
  .footer-logo img { height: 30px; }
}

/* =====================
End of style.css
====================== */
