/* ================== CSS RESET & BASE STYLES ================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F7F9;
  color: #153E52;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper, .text-section, .confirmation-message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============ TYPOGRAPHY / HEADINGS =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  color: #153E52;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}
h4 {
  font-size: 1.2rem;
}
p,
.text-section li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2B445A;
}
strong {
  font-weight: 700;
}

/* ===== VIBRANT_ENERGETIC PALETTE EXTENSIONS ===== */
:root {
  --brand-primary: #153E52;
  --brand-secondary: #45A9BF;
  --brand-accent: #F6F7F9;
  --electric-blue: #02DBFE;
  --electric-pink: #FF5F99;
  --sun-yellow: #FFE156;
  --vivid-purple: #7E3FF2;
}

/* =================== HEADER =================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(69, 169, 191, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.logo img {
  height: 44px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--electric-blue);
  color: #fff;
  outline: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, var(--brand-secondary), var(--electric-blue) 80%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 34px;
  border-radius: 32px;
  box-shadow: 0 8px 28px rgba(2,219,254,0.11);
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.21s, transform 0.17s;
  margin-left: 24px;
  position: relative;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue));
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,95,153,0.21);
  transform: translateY(-2px) scale(1.03);
}

/* Hide button on desktop, show on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 12px;
  border: none;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 102;
  transition: background 0.18s, box-shadow 0.21s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  box-shadow: 0 4px 12px rgba(2,219,254,0.13);
}

/* ========= MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #fff 80%, var(--electric-blue) 100%);
  transform: translateX(-110vw);
  opacity: 0;
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.36s cubic-bezier(.67,.01,.16,1), opacity 0.26s;
  box-shadow: 0 18px 36px 16px rgba(2,219,254,0.07);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  margin: 28px 0 0 24px;
  background: var(--electric-pink);
  color: #fff;
  font-size: 2.4rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-start;
  transition: background 0.2s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--brand-secondary);
}
.mobile-nav {
  margin: 36px 0 0 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 0 0 0 40px;
  padding: 14px 0;
  border-bottom: 1px solid #e8eaf0;
  width: calc(100% - 80px);
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--electric-blue);
  color: #fff;
  outline: none;
  border-radius: 8px;
}


/* =========== HERO + SECTION STYLES =========== */
.hero {
  background: linear-gradient(90deg, #fff 70%, var(--electric-blue) 100%);
  border-bottom: 4px solid var(--electric-pink);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 28px 0;
}
.hero .content-wrapper {
  margin: 40px 0 0 0;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  background: linear-gradient(90deg,var(--electric-blue) 30%, var(--electric-pink) 85%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: bolder;
}
.hero p {
  font-size: 1.2rem;
  color: #2B445A;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(69, 169, 191, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.cta {
  background: linear-gradient(90deg,var(--electric-pink) 40%, var(--electric-blue));
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(255, 95, 153, 0.10);
  margin: 48px 0;
}
.cta h2, .cta p {
  color: #fff;
}

/* ============ FLEXBOX LAYOUTS AS PER SPEC =========== */
.card-container, .listing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(69,169,191,0.09);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  max-width: 400px;
  border-left: 5px solid var(--electric-pink);
}

/* Testimonial color contrast rule from spec */
.testimonial-card p, .testimonial-meta, .testimonial-card .stars {
  color: #153E52;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-meta span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-secondary);
}
.stars {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--sun-yellow);
  font-size: 1.4em;
  margin-bottom: 6px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.features-list li {
  display: flex;
  align-items: center;
  background: var(--brand-accent);
  padding: 10px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  gap: 12px;
  color: var(--brand-primary);
  min-width: 180px;
  box-shadow: 0 2px 8px 0 rgba(2,219,254,0.06);
}
.features-list img {
  height: 32px;
  width: 32px;
  margin-right: 4px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0 16px 0;
}
.filters li {
  background: var(--electric-blue);
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.listing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.listing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(2,219,254,0.10);
  padding: 24px 20px 18px 20px;
  flex: 1 1 340px;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  transition: box-shadow 0.17s, transform 0.13s;
  position: relative;
}
.listing-card:hover {
  z-index: 1;
  box-shadow: 0 10px 32px 0 rgba(255, 95, 153, 0.13);
  border-left: 4px solid var(--electric-pink);
  transform: translateY(-3px) scale(1.02);
}
.listing-card h3 {
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}
.listing-card ul li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--brand-secondary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

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

.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.city-tabs button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 700;
  transition: background 0.16s, color 0.14s;
  cursor: pointer;
}
.city-tabs button:hover, .city-tabs button.active {
  background: var(--electric-pink);
  color: #fff;
}

.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--brand-accent);
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(2,219,254,0.03);
  padding: 18px 16px;
}
.faq-item h3 {
  color: var(--brand-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.faq-item p {
  color: #2B445A;
  font-size: 1rem;
}

/* ============ CONTACT ============ */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.12rem;
}
.contact-details img {
  width: 26px;
  height: 26px;
}
.contact-details a { color: var(--electric-pink); }

.contact-instructions {
  background: var(--brand-accent);
  border-radius: 12px;
  padding: 18px 14px 14px 20px;
  box-shadow: 0 2px 7px 0 rgba(2,219,254,0.03);
}

/* ========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #2B445A;
  box-shadow: 0 -3px 20px 0 rgba(21,62,82,0.14);
  z-index: 9999;
  padding: 23px 12px 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  border-radius: 28px 28px 0 0;
  transition: transform 0.46s cubic-bezier(.77,.08,.3,.93), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 22px;
  padding: 10px 22px;
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
  margin-top: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--electric-blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(2,219,254,0.13);
}
.cookie-banner .accept:hover {
  background: var(--brand-secondary);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--electric-pink);
  border: 2px solid var(--electric-pink);
}
.cookie-banner .reject:hover {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .settings:hover {
  background: var(--electric-pink);
  color: #fff;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 11000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,62,82,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 32px 0 rgba(21,62,82,0.19);
  max-width: 420px;
  width: 98vw;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: cookieModalIn 0.34s cubic-bezier(.77,.08,.3,.93);
}
@keyframes cookieModalIn {
  from { transform: scale(0.93) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-primary);
}
.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.cookie-modal-category {
  background: var(--brand-accent);
  padding: 13px 12px 12px 16px;
  border-radius: 12px;
  font-size: 1rem;
  color: #153E52;
  margin-bottom: 9px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
}
.cookie-modal-category .toggle {
  margin-left: 14px;
  background: var(--electric-blue);
  border-radius: 8px;
  width: 48px; height: 28px;
  appearance: none;
  outline: none;
  border: none;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal-category .toggle:checked {
  background: var(--electric-pink);
}
.cookie-modal-category input[type="checkbox"]:disabled {
  background: #c1ecf9;
  cursor: default;
}
/* visually always checked for essentials */
.cookie-modal-category input[type="checkbox"]:disabled:after {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  left: 20px; top: 1px;
  background: var(--brand-secondary);
}
/* Toggle visual */
.cookie-modal-category input[type="checkbox"] {
  width: 48px;
  height: 28px;
  position: relative;
  background: var(--electric-blue);
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(2,219,254,0.08);
  transition: background 0.16s;
  outline: none;
  cursor: pointer;
  margin: 0 4px 0 0;
}
.cookie-modal-category input[type="checkbox"]::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.16s;
}
.cookie-modal-category input[type="checkbox"]:checked::before {
  left: 22px;
  background: var(--electric-pink);
}

.cookie-modal-category label {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal .close-btn {
  align-self: flex-end;
  background: var(--electric-pink);
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
  border: none;
}
.cookie-modal .close-btn:hover,
.cookie-modal .close-btn:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* =============== FOOTER =============== */
footer {
  margin-top: 48px;
  padding: 0 0 8px 0;
  background: #fff;
  box-shadow: 0 -2px 40px 0 rgba(69,169,191,0.10);
  border-radius: 18px 18px 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 20px 18px 20px;
}
.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 270px;
}
.footer-brand-info img {
  height: 40px;
}
.footer-brand-info span {
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.12rem;
  color: var(--brand-primary);
}
.footer-brand-info address {
  font-size: 1rem;
  color: #2b445a;
  font-style: normal;
  margin-bottom: 4px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.footer-contact img {
  height: 22px; width: 22px; margin-right: 3px;
}
.footer-contact a {
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: var(--electric-pink);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #153E52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 0;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--electric-pink);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social a img {
  width: 28px; height: 28px;
  filter: grayscale(10%);
  opacity: 0.90;
  transition: filter 0.22s, opacity 0.18s;
}
.footer-social a:hover img {
  filter: grayscale(0) drop-shadow(0 0 4px var(--electric-pink));
  opacity: 1;
}

/* ===================== RESPONSIVE/MOBILE ==================== */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  footer .footer-brand-info, .footer-nav, .footer-contact, .footer-social {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .btn-primary { font-size: 1rem; padding: 11px 24px; }

  .hero .container, .section .container, .cta .container {
    padding-left:0; padding-right:0;
  }
  .section, .cta {
    padding: 24px 6px;
    border-radius: 12px;
    margin-bottom: 42px;
  }
  .content-wrapper, .text-section {
    gap: 18px;
  }
  .features-list { gap: 14px; }
  .testimonial-card { min-width:200px; max-width: 100%; }

  .card-container, .listing-grid,
  .testimonials-slider {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .contact-details ul { gap:10px; }

  .main-nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .footer-nav, .footer-contact, .footer-social {
    align-items: flex-start;
    gap: 14px;
  }
  footer .container {
    padding: 24px 8px 10px 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1.1rem; }
  .section, .cta {
    padding: 15px 2px;
    border-radius: 7px;
  }
  .testimonials-slider, .card-container, .listing-grid {
    gap: 10px;
  }
  .testimonial-card, .listing-card {
    padding: 10px 6px 10px 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 5px 14px 8px;
  }
  .cookie-modal-category {
    padding: 9px 5px 8px 8px;
  }
}
/* Flex direction for text-image sections on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ============= ANIMATIONS & INTERACTIONS ============= */
.btn-primary, .card, .listing-card, .testimonial-card, .footer-nav a, .footer-social a img, .main-nav a, .mobile-nav a, .cookie-banner button, .cookie-modal .close-btn {
  transition: all 0.19s cubic-bezier(.64,.09,.29,.94);
}
.btn-primary:active, .footer-nav a:active, .footer-social a:active img, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/* ========== UTILITY GAPS & MARGINS ========== */
.section, .cta {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}
.card, .testimonial-card, .listing-card {
  margin-bottom: 20px;
}

/* ================= SCROLLBAR =================== */
::-webkit-scrollbar {
  width: 10px;
  background: #e5faff;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 8px;
}

/* ================ VISUAL HIERARCHY ================ */
.confirmation-message {
  background: var(--brand-accent);
  border-left: 6px solid var(--electric-blue);
  border-radius: 9px;
  padding: 12px 12px 10px 18px;
  color: #153E52;
}

/* ================= END ================== */