/* 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;
}
html, body { height: 100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.72;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223365;
  background-color: #F8F8FA;
  min-height: 100%;
}
a { color: #69C2B0; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #223365; text-decoration: underline; }
ul, ol { padding-left: 1.4em; margin-bottom: 16px; }
img { max-width: 100%; height: auto; vertical-align: middle; }
strong, b { font-weight: 700; }
input, textarea, select, button {
  font: inherit;
  outline: none;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #223365;
}
h1 { font-size: 2.5rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
p { font-size: 1.01rem; margin-bottom: 16px; color: #223365; }

/* LAYOUT CONTAINERS */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(34,51,101,0.05), 0 0px 1px rgba(105,194,176,0.09);
}
@media (max-width: 767px) {
  .section { margin-bottom: 34px; padding: 24px 0px; border-radius: 0; }
}

/* HEADER & NAVIGATION */
header {
  background: #223365;
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 1px 12px 0 rgba(34,51,101,0.08);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 66px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img[alt="DynaQuark Jet"] {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 14px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  letter-spacing: 0.03em;
  padding: 8px 10px;
  border-radius: 12px;
  text-shadow: 0 1px 0 rgba(34,51,101,0.12);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #69C2B0;
  color: #223365;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 9px 30px;
  border-radius: 44px;
  background: #69C2B0;
  color: #223365;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(105,194,176,0.1);
  margin-left: 18px;
  letter-spacing: .08em;
  cursor: pointer;
  text-shadow: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #223365;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(105,194,176,0.18);
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.0rem;
  color: #fff;
  z-index: 31;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #223365;
  z-index: 90;
  box-shadow: 0 6px 32px rgba(34,51,101,0.22);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  padding: 16px 32px 0 0;
  margin-bottom: 0;
  cursor: pointer;
  z-index: 91;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #69C2B0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  gap: 22px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 10px 14px 0;
  border-radius: 12px;
  transition: background .22s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #69C2B0;
  color: #223365;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* HERO STYLES - creative artistic */
.hero {
  width: 100%;
  background: #69C2B0;
  background-blend-mode: multiply;
  color: #223365;
  position: relative;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 48px 0 rgba(34,51,101,0.11);
  margin-bottom: 36px;
}
.hero .container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 50px 0 50px 0;
}
.hero h1 {
  color: #223365;
  font-size: 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(34,51,101,0.08);
}
.hero p {
  color: #1e345c;
  font-size: 1.17rem;
  margin-bottom: 7px;
}
.hero .cta-btn {
  margin-top: 7px;
  background: #fff;
  color: #223365;
  font-size: 1.05rem;
  border-radius: 40px;
  border: 2px solid #223365;
  font-weight: 900;
  transition: background .3s, color .3s, border .3s;
}
.hero .cta-btn:hover {
  background: #223365;
  color: #fff;
}
@media (max-width: 768px) {
  .hero .container {
    padding-left: 0; padding-right: 0;
  }
  .hero .content-wrapper { padding: 28px 0; gap: 15px; }
  .hero h1 { font-size: 1.45rem; }
}

/* FLEX CONTAINER UTILITIES & LISTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 rgba(34,51,101,0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 270px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(34,51,101,0.19),0 1px 1px rgba(105,194,176,0.08);
  transform: translateY(-4px) scale(1.016);
  transition: box-shadow 0.24s, transform 0.18s;
}
.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: 18px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE & SERVICE GRID */
.feature-grid, .service-list, .comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 32px 0 10px 0;
  padding: 0;
}
.feature-grid li, .service-list li, .comparison-grid li {
  background: #F8F8FA;
  border-radius: 20px;
  box-shadow: 0 1px 8px 0 rgba(105,194,176,0.09);
  padding: 30px 22px 18px 22px;
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.14s, transform 0.16s;
  min-width: 220px;
}
.feature-grid li:hover, .service-list li:hover, .comparison-grid li:hover {
  box-shadow: 0 8px 34px 0 rgba(105,194,176,0.17), 0 1px 1px rgba(34,51,101,0.03);
  transform: translateY(-4px) scale(1.022);
}
.feature-grid img, .service-list img, .comparison-grid img {
  height: 36px;
  width: 36px;
  margin-bottom: 9px;
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .comparison-grid { gap: 18px; }
  .feature-grid li, .service-list li, .comparison-grid li { min-width: 160px; max-width: 360px; padding: 22px 8px; }
}
@media (max-width: 700px) {
  .feature-grid, .service-list, .comparison-grid { flex-direction: column; gap: 16px; }
  .feature-grid li, .service-list li, .comparison-grid li { min-width: 0; max-width: 100%; width: 100%; }
}

/* TESTIMONIALS */
.testimonial-slider, .testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  background: #fff;
  color: #223365;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,51,101,0.07);
  font-size: 1.04rem;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card p {
  color: #1d2847;
  font-size: 1.01rem;
  font-style: italic;
  margin-bottom: 5px;
  text-align: center;
}
.testimonial-card strong {
  color: #69C2B0;
  font-size: 1.01rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(105,194,176,0.13);
  transform: translateY(-3px) scale(1.012);
}
@media (max-width: 700px){
  .testimonial-slider, .testimonial-list { flex-direction: column; gap: 12px; }
  .testimonial-card { padding: 16px 12px; max-width: 99%; min-width: 0; }
}

/* BUTTONS & INTERACTIONS */
button { cursor: pointer; }
button, .cta-btn {
  font-family: inherit;
  font-size: 1.03rem;
  font-weight: 600;
  border: none;
  background: #69C2B0;
  color: #223365;
  border-radius: 24px;
  padding: 9px 22px;
  outline: none;
  transition: background .19s, color .19s, box-shadow .14s;
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #223365;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(105,194,176,0.19);
}

/* FOOTER */
footer {
  background: #223365;
  color: #fff;
  margin-top: 38px;
  padding: 26px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 11px;
  justify-content: center;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.17s, color 0.16s;
  opacity: 0.95;
}
.footer-nav a:hover {
  background: #69C2B0;
  color: #223365;
  opacity: 1;
}
.footer-contact {
  text-align: center;
  font-size: 0.99rem;
  color: #daeaf3;
  padding-bottom: 20px;
  opacity: 0.93;
}
@media (max-width: 580px){
  .footer-nav { gap: 9px; flex-direction: column; align-items: center; }
}

/* --- PAGE SPECIFIC COMPONENTS --- */

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  margin: 28px 0 30px 0;
  overflow-x: auto;
  background: #FAFAFC;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(105,194,176,0.04);
  padding: 14px;
}
.comparison-table table {
  width: 900px;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
}
.comparison-table th, .comparison-table td {
  padding: 12px 14px;
  font-size: 1.06rem;
  border-bottom: 1px solid #e9e9ee;
  color: #223365;
  font-family: 'Montserrat', sans-serif;
}
.comparison-table th {
  background: #69C2B0;
  color: #fff;
  font-weight: 800;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 980px) {
  .comparison-table table { min-width: 510px; }
}
@media (max-width: 650px) {
  .comparison-table { min-width: 0; padding: 4px; }
  .comparison-table table { width: 99vw; min-width: 320px; }
  .comparison-table th, .comparison-table td { font-size: 0.99rem; padding: 7px 7px; }
}

/* --- Lists & Misc --- */
.bank-review-list, .guide-topics, .guide-featured-list, .news-article-list, .faq-list, .suggested-actions, .team-profiles, .editor-photo-grid, .query-types ul {
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.bank-review-list li, .guide-featured-list li {
  background: #fff;
  border-left: 6px solid #69C2B0;
  border-radius: 16px 12px 20px 10px;
  box-shadow: 0 2px 16px 0 rgba(34,51,101,0.05);
  padding: 22px 20px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.editor-ratings img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  vertical-align: bottom;
}
.team-profiles {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.editor-profile {
  background: #F8F8FA;
  box-shadow: 0 2px 10px 0 rgba(34,51,101,0.03);
  border-radius: 16px;
  padding: 20px 19px;
  min-width: 190px;
  flex: 1 1 210px;
  max-width: 310px;
}
@media (max-width: 700px) {
  .team-profiles { flex-direction: column; gap: 9px; }
}
.editor-photo-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 7px;
}
.editor-photo-grid img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  background: #e3f3ed;
}

.news-article-list li {
  background: #fff;
  border-left: 5px solid #223365;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(105,194,176,0.04);
  padding: 21px 20px;
  margin-bottom: 7px;
}
.trending-tags {
  display: flex; flex-wrap: wrap; gap: 13px; margin-top: 13px;
}
.trending-tags span {
  font-size: 0.97rem;
  background: #69C2B0;
  padding: 7px 14px;
  border-radius: 11px;
  color: #223365;
  font-family: 'Montserrat',sans-serif;
  letter-spacing: 0.02em;
}

.suggested-actions li a {
  color: #223365;
  background: #69C2B0;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition: background .22s, color .16s;
  display: inline-block;
}
.suggested-actions li a:hover {
  background: #223365;
  color: #fff;
}

.contact-shortform ul, .contact-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 19px 0 0 0;
  padding: 0;
}
.contact-shortform ul li, .contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.contact-shortform ul img, .contact-details ul img {
  height: 21px;
  width: 21px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #223365;
  color: #fff;
  z-index: 1200;
  display: flex; flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 20px 8vw 22px 8vw;
  box-shadow: 0 0px 36px 0 rgba(34,51,101,0.25);
  animation: cookie-fadein 0.6s;
}
.cookie-banner a {
  color: white !important;
}
.cookie-banner p {
  color: #fff;
  font-size: 0.97rem;
  margin: 0 12px 0 0;
}
.cookie-banner .cookie-btn {
  font-size: 1rem;
  margin-left: 9px;
  padding: 9px 16px;
  border-radius: 24px;
  background: #69C2B0;
  color: #223365;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  transition: background .21s, color .21s, box-shadow .21s;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #223365;
  border: 2px solid #69C2B0;
}
.cookie-banner .cookie-btn:hover {
  background: #fff;
  color: #223365;
  box-shadow: 0 8px 20px 0 rgba(105,194,176,0.16);
}
.cookie-banner .cookie-btn.reject {
  background: #ef4444;
  color: #fff;
  font-weight: 800;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #fff;
  color: #ef4444;
}
@media (max-width: 700px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 2vw 18px 2vw;
    gap: 12px;
  }
  .cookie-banner p { margin-bottom: 7px; }
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,51,101, 0.77);
  z-index: 1499;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .37s;
}
.cookie-modal {
  background: #fff;
  color: #223365;
  border-radius: 22px;
  box-shadow: 0 12px 56px 0 rgba(34,51,101,0.18);
  padding: 37px 32px 26px 32px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: modal-pop 0.34s cubic-bezier(0.26,1,0.45,0.96);
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 24px;
  background: none;
  border: none;
  color: #223365;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1501;
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.82) translateY(34px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #223365;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
}
.cookie-toggle {
  width: 40px; height: 22px;
  background: #daeaf3;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  margin-left: 6px;
  margin-right: 2px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 18px; height: 18px;
  background: #69C2B0;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left .22s, background .14s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 20px;
  background: #223365;
}
.cookie-category .cookie-required {
  font-style: italic; color: #666;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal button {
  padding: 9px 22px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
}
.cookie-modal button.accept {
  background: #69C2B0;
  color: #223365;
}
.cookie-modal button.reject {
  background: #ef4444;
  color: #fff;
}
.cookie-modal button.save {
  background: #223365;
  color: #fff;
}
.cookie-modal button:hover {
  opacity: 0.95;
  text-decoration: underline;
}

/* MICRO-ANIMATIONS */
.card, .testimonial-card, .feature-grid li, .service-list li, .comparison-grid li, .bank-review-list li, .guide-featured-list li {
  transition: box-shadow .18s, transform .19s;
}

/* VISUAL ARTISTIC ACCENTS */
h1, h2, h3 {
  position: relative;
}
h1:after, h2:after, h3:after {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  background: #69C2B0;
  border-radius: 8px;
  margin-top: 7px;
  opacity: .67;
  position: relative;
}
h1:after { width: 57px; background: #223365; opacity: .44;  }

/* SPACING AND WRAPPERS */
main section {
  margin-bottom: 60px;
  padding-top: 16px;
  padding-bottom: 16px;
}
main section:last-child { margin-bottom: 36px; }
@media (max-width: 700px) {
  main section { margin-bottom: 32px; }
}

/* FORM ELEMENTS - FOR FUTURE CONTACT FORMS */
input, textarea {
  border: 2px solid #daeaf3;
  border-radius: 11px;
  padding: 10px 13px;
  font-size: 1.1rem;
  width: 100%;
  margin-bottom: 13px;
  background: #fff;
  transition: border-color .18s, box-shadow .21s;
}
input:focus, textarea:focus {
  border-color: #69C2B0;
  box-shadow: 0 3px 12px rgba(105,194,176,0.15);
}
label { font-family: 'Montserrat',sans-serif; font-weight: 700; margin-bottom: 6px; display: block; }

/* Z-INDEX GUARDS ON POPUPS/MENUS */
.mobile-menu { z-index: 90; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1499; }

/* MISCELLANEOUS */
::-webkit-input-placeholder { color: #acb6be; }
::-moz-placeholder { color: #acb6be; }
:-ms-input-placeholder { color: #acb6be; }
::placeholder { color: #acb6be; }

/* Hide unwanted outlines on mouse-only navs */
a:focus, button:focus, .cta-btn:focus { outline: 2px dashed #69C2B0 !important; outline-offset: 2px; }

/* ARTISTIC ACCENTS (for creative) */
@media (min-width: 900px) {
  .hero {
    box-shadow: 0 12px 48px 0 rgba(34,51,101,0.12), 0 1.5px 6px 0 #69C2B0;
    background-position: center top;
  }
}

/* RESPONSIVE GENERAL ADJUSTMENTS */
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; gap: 6px; }
  .cta-btn { padding: 8px 18px; font-size: 0.99rem; }
  .card, .feature-grid li, .service-list li, .comparison-grid li { padding: 16px 9px;}
}

/* PREVENT OVERLAPPING - guarantee spacing */
.container, .content-wrapper, .card-container, .feature-grid, .service-list, .comparison-grid, .testimonial-slider, .testimonial-list {
  gap: 20px;
}
.card, .feature-grid li, .service-list li, .comparison-grid li, .testimonial-card, .bank-review-list li, .guide-featured-list li, .news-article-list li {
  margin-bottom: 20px;
}

/* Scrollbar artistic accent */
::-webkit-scrollbar {
  width: 8px;
  background: #F8F8FA;
}
::-webkit-scrollbar-thumb {
  background: #69C2B0;
  border-radius: 8px;
}

/* END CSS */
