/* =========================
   CLARON LUXE RENTALS STYLE
   ========================= */

/* ====== 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;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #16192B;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a { color: #FECC55; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #fff1c1; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; border-bottom: 1px solid #212445; text-align: left; }
th { background: #1d203c; color: #FECC55; font-weight: 700; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
tr:last-child td { border-bottom: none; }
:focus { outline: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
.subtitle { color: #B7B8BB; font-size: 1.15rem; margin-bottom: 16px; }
strong { color: #FECC55; font-weight: 700; }

/* =============== BRAND CONTAINERS & LAYOUTS =============== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #191B31;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(30,30,40,0.13), 0 1.5px 7px 0 rgba(254, 204, 85, 0.02);
  padding: 32px 24px;
  border: 1.5px solid #23264A;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(254,204,85,0.14), 0 2px 8px 0 rgba(30,30,40,0.08);
  border-color: #FECC55;
  transform: translateY(-2px) scale(1.015);
}
.content-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #191B31;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(30, 30, 40, 0.08);
  padding: 26px 22px 22px 22px;
  flex: 1 1 250px;
  max-width: 330px;
  min-width: 225px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
  border: 1.5px solid #242646;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid > div img {
  width: 42px; height: 42px;
  margin-bottom: 18px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 30px 0 rgba(254,204,85,0.08), 0 2px 8px 0 rgba(30,30,40,0.10);
  border-color: #FECC55;
  transform: translateY(-2.5px) scale(1.02);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-list,
.testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-list {
  gap: 30px;
  margin-top: 24px;
}
.testimonial-card {
  background: #f5f7fb;
  color: #121212;
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: 0 4px 22px 0 rgba(30,30,40,0.09);
  align-items: center;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 280px;
  flex-direction: column;
  font-size: 1rem;
}
.testimonial-card strong { color: #A88A22; }
.feature-item { /* for possible future use */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 16px;
}

/* =========== HEADER / NAV ========== */
header {
  background: #181A2C;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.07);
  padding: 0;
  position: sticky; z-index: 50; top: 0;
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo img { height: 44px; }
nav.main-nav {
  display: flex;
  gap: 32px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.17s;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 6px 12px;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: rgba(254,204,85,0.08);
  color: #FECC55;
}
nav.main-nav .cta-primary {
  background: #FECC55;
  color: #191B31;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 40px;
  box-shadow: 0 2px 10px 0 rgba(254,204,85,0.15);
  margin-left: 12px;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
  border: none;
  font-size: 1rem;
}
nav.main-nav .cta-primary:hover, nav.main-nav .cta-primary:focus {
  background: #F8B602;
  color: #fff;
  box-shadow: 0 5px 40px 0 rgba(254,204,85,0.18);
}

/* ============== BURGER MOBILE MENU ============== */
.mobile-menu-toggle {
  display: none;
  padding: 10px 16px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FECC55;
  cursor: pointer;
  z-index: 1001;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(254,204,85,0.09);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #16192BCC;
  backdrop-filter: blur(4px);
  z-index: 2500;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  padding: 18px 30px 10px 20px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2501;
  margin-bottom: 18px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #FECC55; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 38px;
  width: 100%;
  align-items: flex-start;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FECC55;
  font-size: 1.25rem;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.17s, color 0.17s;
  width: 90%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(254,204,85,0.07);
  color: #fff;
}

@media (max-width: 1000px) {
  nav.main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    height: 65px;
  }
}

@media (max-width: 850px) {
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle { display: inline-block; }
}

/* =========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(120deg, #181A2C 75%, #26294a 100%);
  padding: 64px 0 54px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 650px;
}

/* =========== GENERIC FEATURES & LAYOUT SECTIONS ============= */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper,
.services .content-wrapper,
.team .content-wrapper,
.legal .content-wrapper,
.about .content-wrapper,
.faq .content-wrapper,
.confirmation .content-wrapper {
  background: #191B31;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(30,30,40,0.08);
  padding: 40px 28px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .features .content-wrapper,
  .services .content-wrapper,
  .team .content-wrapper,
  .legal .content-wrapper,
  .about .content-wrapper,
  .faq .content-wrapper,
  .confirmation .content-wrapper {
    padding: 24px 8px;
    margin-bottom: 19px;
  }
}

.services ul,
.legal .text-section ul,
.team .text-section ul,
.about .text-section ul,
.confirmation ul,
.contact .text-section ul {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-left: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.services ul li,
.legal .text-section ul li,
.team .text-section ul li,
.about .text-section ul li,
.confirmation ul li,
.contact .text-section ul li {
  padding-left: 0;
  color: #B7B8BB;
}

/* =========== CTA BUTTONS =========== */
.cta-primary {
  display: inline-block;
  background: #FECC55;
  color: #181A2C;
  border-radius: 60px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 12px 34px;
  margin-top: 10px;
  box-shadow: 0 3px 18px 0 rgba(254,204,85,0.10);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.23s, color 0.23s, box-shadow 0.18s, transform 0.16s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F8B602;
  color: #fff;
  box-shadow: 0 10px 38px 0 rgba(254,204,85,0.22);
  transform: translateY(-2px) scale(1.035);
}
.cta-secondary {
  background: none;
  color: #FECC55;
  border: 2px solid #FECC55;
  border-radius: 60px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 34px;
  box-shadow: none;
  font-size: 1.08rem;
  margin-left: 14px;
  transition: background 0.20s, color 0.20s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FECC55;
  color: #181A2C;
}

/* ============= SECTION SPACING (MANDATORY) ============= */
.section,
.hero,
.features,
.services,
.team,
.call-to-action,
.testimonials,
.faq,
.confirmation,
.contact,
.legal,
.about {
  margin-bottom: 60px !important;
  padding: 40px 20px;
}
/* mandatory card and flex container spacing */
.card-container, .feature-grid, .content-grid, .testimonial-list {
  gap: 20px {
    gap: 24px; /* .card-container might require 24px as per rules */
  }
}
.card, .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: none;
}
.call-to-action {
  background: linear-gradient(120deg, #191B31 92%, #23264A 100%);
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(254,204,85,0.09);
  text-align: center;
}
.call-to-action .content-wrapper {
  align-items: center;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* ========== FOOTER ============ */
footer {
  background: #191B31;
  color: #B7B8BB;
  padding: 44px 0 28px 0;
  border-top: 2px solid #23264A;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  min-width: 160px; max-width: 200px;
}
.footer-brand img { height: 36px; }
.footer-brand span {
  color: #FECC55;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 7px;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-nav a {
  color: #B7B8BB;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.16s;
}
.footer-nav a:hover { color: #FECC55; }
.footer-contact {
  font-size: 0.98rem;
  display: flex; flex-direction: column; gap: 9px;
  color: #fff;
  min-width: 200px;
}
.footer-contact img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  opacity: 0.8;
  vertical-align: middle;
}
.footer-contact br {
  margin-bottom: 5px;
}

/* ========== TABLE (Pricing Page) ========== */
.pricing table {
  width: 100%;
  background: #191B31;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0 16px 0;
  box-shadow: 0 2px 12px 0 rgba(30,30,40,0.07);
}
.pricing th, .pricing td {
  color: #fff;
  border-bottom: 1.5px solid #23264A;
}
.pricing th { background: #23264A; color: #FECC55; font-size: 1.1rem; }
.pricing td { background: #191B31; }
@media (max-width: 600px) {
  .pricing table, .pricing th, .pricing td {
    font-size: 0.98rem;
  }
}

/* ========== FORMS (contact, newsletter, etc.) ========== */
input, select, button, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.2px solid #2F314E;
  background: #181A2C;
  color: #fff;
  padding: 9px 14px;
  margin-bottom: 14px;
  width: 100%;
  transition: border-color 0.18s, background 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FECC55;
  background: #23264A;
}
button {
  cursor: pointer;
}

/* ============= LEGAL / TEXT PAGES ============= */
.legal .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #B7B8BB;
  font-size: 1rem;
  margin-bottom: 10px;
}
.legal .text-section a { color: #FECC55; }
.legal .text-section h2{ color:#FECC55;font-size: 1.15rem; margin-top:24px; }

/* ============= FAQ LAYOUT ============= */
.faq-list h2 { font-size: 1.25rem; color:#FECC55; margin-bottom: 6px; }
.faq-list p { color: #B7B8BB; margin-bottom: 0; }

/* ============ CONFIRMATION PAGE ============ */
.confirmation .content-wrapper {
  text-align: center;
  align-items: center;
}
.confirmation h1, .confirmation h2 { text-align: center; }
.confirmation ul { margin: 0 auto; text-align: left; max-width: 380px; }

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1240px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1050px) {
  .container { max-width: 820px; }
}
@media (max-width: 850px) {
  .container { max-width: 100vw; }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-nav, .footer-brand, .footer-contact {
    min-width: unset; max-width: unset;
  }
}
@media (max-width: 768px) {
  .feature-grid, .content-grid, .testimonial-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section, .hero, .features, .services, .team, .call-to-action, .testimonials, .faq, .confirmation, .contact, .legal, .about {
    padding: 32px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper { padding: 20px 2px !important; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.30rem; }
}
@media (max-width: 410px) {
  .feature-grid > div { min-width: 100px; padding: 16px 8px; }
  .testimonial-card { min-width: 110px; padding: 11px 8px; }
}

/* ============= COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #191B31;
  color: #fff;
  box-shadow: 0 -2px 30px 0 rgba(254,204,85,0.09);
  z-index: 4000;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 76px;
  transition: transform 0.3s cubic-bezier(.8,0,.23,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  color: #fff;
  flex: 2 1 300px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  justify-content: flex-end;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 30px;
  padding: 10px 22px;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 6px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #FECC55;
  color: #181A2C;
  box-shadow: 0 1.5px 5px 0 rgba(254,204,85,0.13);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F8B602;
  color: #fff;
}
.cookie-btn.reject {
  background: none;
  color: #FECC55;
  border: 2px solid #FECC55;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FECC55;
  color: #181A2C;
}
.cookie-settings-btn {
  background: #191B31;
  color: #B7B8BB;
  border: 1.2px solid #B7B8BB;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FECC55;
  color: #181A2C;
  border-color: #FECC55;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
    gap: 10px;
    min-height: 0;
  }
  .cookie-banner__actions { width: 100%; }
}

/* ==== COOKIE MODAL ==== */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 4100;
  background: rgba(22, 25, 43, 0.93);
  display: none;
  justify-content: center;
  align-items: flex-end;
  transition: opacity 0.2s;
}
#cookie-modal.active { display: flex; animation: cookieModalIn 0.27s cubic-bezier(.78,.01,.21,1) both; }
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal__panel {
  background: #f5f7fb;
  color: #16192B;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -1px 24px 0 rgba(40,32,22,0.14);
  padding: 38px 36px 32px 36px;
  min-width: 320px; max-width: 98vw;
  width: 410px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__panel h2 {
  color: #16192B;
  margin-bottom: 11px;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-modal__panel .cookie-category {
  display: flex; align-items: center; gap: 13px; margin: 12px 0;
  padding: 10px 0;
  font-size: 1.09rem;
}
.cookie-modal__panel .cookie-switch {
  margin-left: auto;
}
.cookie-modal__panel .cookie-required {
  color: #A88A22;
  font-size: 0.94rem;
  margin-left: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal__close {
  position: absolute; right: 8px; top: 7px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #16192B;
  opacity: 0.69;
  cursor: pointer;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #FECC55; opacity: 1;
}
@media (max-width: 500px) {
  .cookie-modal__panel { padding: 16px 6px 16px 10px; width: 94vw; }
}

/* ==== COOKIE CATEGORY SWITCH (toggle) ==== */
.cookie-switch {
  width: 44px; height: 24px; background: #B7B8BB;
  border-radius: 24px; position: relative;
  display: inline-block; vertical-align: middle;
  transition: background 0.2s;
}
.cookie-switch input[type="checkbox"] { display: none; }
.cookie-switch-label {
  display: block;
  width: 44px; height: 24px;
  cursor: pointer;
  position: absolute; left: 0; top: 0; right: 0; bottom: 0;
}
.cookie-switch-slider {
  position: absolute; left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #FECC55;
  border-radius: 50%;
  transition: transform 0.26s cubic-bezier(.68,0,.31,1), background 0.13s;
  box-shadow: 0 1px 6px 0 rgba(30,30,40,0.08);
}
.cookie-switch input[type="checkbox"]:checked + .cookie-switch-label .cookie-switch-slider {
  transform: translateX(20px);
  background: #B7B8BB;
}

/* =============== OVERRIDES/DARK SECTIONS =============== */
.white-section, .testimonial-card, .cookie-modal__panel {
  background: #f5f7fb !important;
  color: #16192B !important;
}
.white-section h1, .white-section h2, .white-section h3,
.testimonial-card h1, .testimonial-card h2, .testimonial-card h3,
.cookie-modal__panel h1, .cookie-modal__panel h2, .cookie-modal__panel h3 {
  color: #16192B !important;
}

/* === MICRO-INTERACTIONS === */
.card, .feature-grid > div, .testimonial-card, .cta-primary, .cta-secondary, .cookie-btn, .cookie-settings-btn,
nav.main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, border-color 0.15s, box-shadow 0.18s, transform 0.14s;
}

/* ========== ICONS REFINEMENT ========= */
img[alt$='Icon'], img[alt$='icon'] {
  filter: drop-shadow(0 0 2px #FECC55);
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');


/* ========== FINAL ADJUSTMENTS / UTILITIES ============= */
.hide-mobile { display: block; }
@media (max-width: 850px) {
  .hide-mobile { display: none !important; }
}
.show-mobile { display: none; }
@media (max-width: 850px) {
  .show-mobile { display: inline-block !important; }
}

::-webkit-scrollbar {
  width: 7px;
  background: #23264A;
}
::-webkit-scrollbar-thumb {
  background: #FECC55; border-radius: 7px;
}

/* ========== UTILITY FLEX CLASSES ========== */
.flex-start { display: flex; align-items: flex-start; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }

/* Ensure minimum spacing for all main flex containers */
.content-grid, .feature-grid, .testimonial-list, .card-container {
  margin-bottom: 24px;
}

/* Required for non-overlapping and breathing room */
.card, .feature-grid > div, .testimonial-card {
  margin-bottom: 24px;
}

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