/* 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;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #E1E6EB;
  color: #23395B;
  min-height: 100vh;
  position: relative;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23395B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F7AC45;
}
ul, ol {
  list-style: none;
}
button, .cta-btn {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #23395B;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: none;
}
h2, .h2 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #23395B;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  line-height: 1.12;
  text-transform: none;
}
h3, .h3 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #23395B;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
p {
  font-size: 1rem;
  color: #23395B;
  margin-bottom: 18px;
  line-height: 1.6;
}
strong {
  color: #23395B;
  font-weight: 700;
}

/* GEOMETRIC/STRUCTURED STYLE SHAPES & DETAILS */
section, .section {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 32px rgba(35,57,91,0.07), 0 1.5px 3px rgba(35,57,91,0.02);
  position: relative;
}

@media (max-width: 1000px) {
  section, .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.12rem; }
}
@media (max-width: 600px) {
  section, .section {
    padding: 24px 4vw;
    margin-bottom: 32px;
    border-radius: 13px;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (max-width: 700px) {
  .content-wrapper {
    gap: 18px;
  }
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #23395B;
  color: #fff;
  border-radius: 10px;
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  border: 2.5px solid #F7AC45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(35, 57, 91, 0.07);
  margin-top: 11px;
  transition: background 0.22s, color 0.22s, border 0.22s, box-shadow 0.22s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F7AC45;
  color: #23395B;
  border-color: #23395B;
  box-shadow: 0 2px 8px rgba(247, 172, 69, 0.21);
}

button, .button {
  background: #F7AC45;
  color: #23395B;
  border-radius: 8px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: background 0.22s, color 0.22s, border 0.22s, box-shadow 0.22s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #23395B;
  color: #fff;
  border-color: #F7AC45;
}

/* HEADER & NAVIGATION -------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 2px solid #E1E6EB;
  position: relative;
  z-index: 30;
  padding-top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 30px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 10px;
  background: #E1E6EB;
  box-shadow: 0 2px 8px rgba(35, 57, 91, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #23395B;
  padding: 7px 11px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F7AC45;
  color: #fff;
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
  background: #23395B;
  border-radius: 8px;
  padding: 8px 13px;
  color: #fff;
  font-size: 2rem;
  margin-left: 14px;
  border: 2px solid #F7AC45;
  z-index: 101;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F7AC45;
  color: #23395B;
  border-color: #23395B;
}

@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  header .container {
    gap: 8px;
  }
}

/* MOBILE MENU -------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23395B;
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0.07,0.97,0.87);
  box-shadow: 2px 0 32px 6px rgba(35,57,91,0.12);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 2px 0 32px 12px rgba(35,57,91,0.25);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  margin: 24px 0 0 24px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #F7AC45;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 50px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 6px;
  padding: 10px 0;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7AC45;
  color: #23395B;
}
@media (max-width: 500px) {
  .mobile-nav {
    gap: 17px;
    margin-top: 30px;
    margin-left: 14px;
  }
  .mobile-menu-close {
    margin: 14px 0 0 14px;
    font-size: 2rem;
  }
}

/* HERO BANNER -------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #E1E6EB 65%, #F7AC45 135%);
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 4px 32px rgba(35,57,91,0.08);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero h1 {
  color: #23395B;
  text-shadow: 0 2px 12px #E1E6EBAA;
}
.hero p {
  color: #23395B;
  font-size: 1.17rem;
  margin-bottom: 14px;
}
.hero .cta-btn {
  margin: 0 auto;
}

@media (max-width: 700px) {
  .hero { border-radius: 14px; margin-bottom: 24px; padding-top: 34px !important; }
}

/* FLEX PATTERNS for STRUCTURE ----------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,57,91,0.08);
  flex: 1 1 250px;
  min-width: 250px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 6px 26px rgba(35,57,91,0.18);
  transform: translateY(-2px) scale(1.015);
}

.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;
    align-items: stretch;
    gap: 14px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,57,91,0.07);
  margin-bottom: 20px;
  border-left: 8px solid #F7AC45;
  transition: box-shadow 0.22s;
  color: #23395B;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #23395B;
}
.testimonial-card strong {
  color: #23395B;
}
.testimonial-card:hover {
  box-shadow: 0 5px 34px 0 rgba(35,57,91,0.22);
}

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

/* GEOMETRIC CARDS and ICON GRIDS ----------------------------- */
.feature-grid, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature-grid li, .values-list li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(35,57,91,0.07);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 340px;
  padding: 24px 18px 15px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  border-left: 7px solid #F7AC45;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-grid li:hover, .values-list li:hover {
  box-shadow: 0 6px 26px rgba(35,57,91,0.13);
  border-left: 7px solid #23395B;
}
.feature-grid img, .values-list img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .feature-grid, .values-list { gap: 16px; }
  .feature-grid li, .values-list li { min-width: 180px; max-width: 100%; }
}
@media (max-width: 600px) {
  .feature-grid, .values-list { flex-direction: column; gap: 10px; }
  .feature-grid li, .values-list li { min-width: unset; margin-bottom: 10px;}
}

.service-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.service-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(35,57,91,0.06);
  padding: 20px 19px 20px 19px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-bottom: 5px solid #F7AC45;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 18px rgba(35,57,91,0.11);
  border-bottom: 5px solid #23395B;
}
.service-card h3 {
  font-size: 1.11rem;
  color: #23395B;
  font-family: 'Nunito';
  margin-bottom: 7px;
}
.service-card .service-price {
  font-family: 'Nunito';
  color: #23395B;
  font-size: 1.08rem;
  font-weight: 900;
  background: #E1E6EB;
  padding: 3px 13px;
  border-radius: 12px;
  margin-top: 10px;
  align-self: flex-end;
}
@media (max-width: 800px) {
  .service-card-grid {
    gap: 12px;
    flex-direction: column;
  }
  .service-card {min-width: unset; max-width: 100%;}
}


.usp-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.usp-list li {
  background: #F7AC45;
  color: #23395B;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.service-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.service-summary-list li {
  position: relative;
  padding-left: 18px;
  color: #23395B;
  font-size: 1rem;
  margin-bottom: 2px;
}
.service-summary-list li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 10px;
  width: 10px;
  height: 10px;
  background: #F7AC45;
  clip-path: polygon(50% 0, 100% 100%, 0 100%); /* geometric triangle */
  border-radius: 2px;
}

/* PROCESS STEPS GEOMETRIC OL ------------------------- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
  margin-bottom: 19px;
}
.process-steps li {
  background: #E1E6EB;
  border-radius: 11px;
  padding: 20px 17px 13px 17px;
  flex: 1 1 175px;
  min-width: 175px;
  max-width: 260px;
  color: #23395B;
  font-family: 'Nunito';
  font-size: 1.05rem;
  box-shadow: 0 2px 7px rgba(35,57,91,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.12s;
  margin-bottom: 8px;
  position: relative;
}
.process-steps li img {
  width: 38px;
  margin-bottom: 8px;
}
.process-steps li strong {
  color: #F7AC45;
  font-size: 1.02rem;
  display: block;
  margin-bottom: 3px;
}
.process-steps li:hover {
  box-shadow: 0 8px 20px rgba(35,57,91,0.10);
}
@media (max-width: 750px) {
  .process-steps { flex-direction: column; gap: 10px; }
  .process-steps li {max-width: 100%;}
}

/* FAQ LIST & ACCORDION -------------------------------------------------- */
.faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-list li, .faq-accordion li {
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(35,57,91,0.04);
  padding: 17px 16px;
  font-size: 1rem;
  color: #23395B;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 8px;
  border-left: 7px solid #E1E6EB;
  transition: border-color 0.18s;
  position: relative;
}
.faq-list li:hover, .faq-accordion li:hover {
  border-left: 7px solid #F7AC45;
}
.faq-list h3, .faq-accordion h3 {
  font-family: 'Nunito';
  font-size: 1.04rem;
  color: #23395B;
  font-weight: 900;
}
@media (max-width: 700px) {
  .faq-list, .faq-accordion { gap: 10px; }
}

.faq-cta {
  text-align: center;
  background: #F7AC45;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.faq-cta p {
  color: #23395B;
  font-weight: 700;
  padding: 18px 0;
  margin-bottom: 0;
}
.faq-cta a {
  color: #23395B;
  font-weight: 900;
  border-bottom: 2px solid #23395B;
  margin-left: 8px;
  transition: color 0.16s, border-color 0.16s;
}
.faq-cta a:hover, .faq-cta a:focus {
  color: #fff;
  border-color: #fff;
}

/* PRICING TABLES -------------------------------------------------- */
.prices-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.4em;
  color: #23395B;
  margin-bottom: 20px;
  font-size: 1rem;
  background: #fff;
}
.prices-table th, .prices-table td {
  border: none;
  padding: 14px 10px;
  background: #E1E6EB;
  border-radius: 7px;
  font-family: 'Nunito';
}
.prices-table th {
  background: #23395B;
  color: #fff;
  font-weight: 900;
  font-size: 1.04rem;
  border-radius: 8px 8px 0 0;
}
.prices-table tr + tr td {
  border-top: 7px solid #fff;
}

/* TESTIMONIALS - GRID DISPLAY --------------------------------- */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonials-grid .testimonial-card {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 355px;
}
.review-rating {
  display: flex;
  flex-direction: row;
  gap: 2.5px;
  margin-bottom: 7px;
  align-items: center;
}
.review-rating img {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 2px 4px #e1e6eb80);
}

@media (max-width: 800px) {
  .testimonials-grid { gap: 13px; }
  .testimonials-grid .testimonial-card {min-width: unset; max-width: 100%;}
}
@media (max-width: 600px) {
  .testimonials-grid { flex-direction: column; gap: 8px; }
}

/* TESTIMONIAL SLIDER (HOMEPAGE preview) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.testimonial-slider .testimonial-card {
  min-width: 210px;
  flex: 1 1 300px;
  margin: 0;
}

/* CTA BANNERS/STRIPS --------------------------------------- */
.cta-strip, .cta-banner {
  background: #23395B;
  color: #fff;
  border-radius: 17px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(35,57,91,0.10);
  margin-bottom: 27px;
}
.cta-strip h2, .cta-banner h2 {
  color: #F7AC45;
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Nunito';
}
.cta-strip p, .cta-banner p {
  color: #fff;
}
.cta-strip .cta-btn, .cta-banner .cta-btn {
  background: #F7AC45;
  color: #23395B;
  border-color: #fff;
  margin-top: 10px;
}
.cta-strip .cta-btn:hover, .cta-banner .cta-btn:hover {
  background: #fff;
  color: #23395B;
  border-color: #F7AC45;
}


/* CONTACT PAGE ----------------------------------- */
.contact-info-section .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-info-section .contact-details-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
  background: #E1E6EB;
  border-radius: 8px;
  padding: 10px 13px;
  color: #23395B;
  font-family: 'Nunito';
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(35,57,91,0.05);
  padding: 11px 14px;
  margin-top: 14px;
  margin-bottom: 18px;
}
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .contact-info-section .contact-details-list li, .map-embed{ font-size: 0.99rem;}
  .contact-cta { flex-direction: column;}
}

/* FOOTER ----------------------------------------------------------- */
footer {
  background: #23395B;
  color: #fff;
  padding: 0 0 20px 0;
  font-size: 1rem;
  border-top: 3px solid #F7AC45;
  margin-top: 50px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  padding: 50px 0 20px 0;
  align-items: flex-start;
  border-bottom: 1.5px solid #E1E6EB52;
  margin-bottom: 14px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-brand img {
  width: 42px;
  margin-bottom: 3px;
  border-radius: 9px;
}
.footer-brand span {
  font-family: 'Nunito';
  font-size: 1.18rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 2px;
}
.footer-brand address,
.footer-brand a {
  font-size: 0.98rem;
  color: #F7AC45;
  font-style: normal;
  text-decoration: none;
  margin-bottom: 2px;
}
.footer-brand a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: #E1E6EB;
  font-size: 1.08rem;
  font-family: 'Nunito';
  font-weight: 700;
  border-left: 5px solid transparent;
  padding-left: 11px;
  transition: border-color 0.15s, color 0.13s;
}
.footer-menu a:hover { color: #F7AC45; border-color: #F7AC45; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-social span {
  color: #fff;
  font-size: 1.04rem;
  font-family: 'Nunito';
}
.footer-social a img {
  width: 27px;
  height: auto;
  filter: drop-shadow(0 1.5px 3px #E1E6EB55);
  border-radius: 5px;
  background: #fff;
  transition: background 0.17s;
}
.footer-social a:hover img { background: #F7AC45; }
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #E1E6EB;
  font-size: 0.97rem;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .footer-top { gap: 22px; padding-top: 25px; }
}
@media (max-width: 600px) {
  .footer-top { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-brand span { font-size: 1.08rem; }
}

/* GEOMETRIC EFFECTS & MICRO-INTERACTIONS */
.card, .feature-grid li, .values-list li, .service-card, .testimonial-card, .usp-list li, .faq-list li, .faq-accordion li, .process-steps li {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:hover, .feature-grid li:hover, .values-list li:hover, .service-card:hover, .testimonial-card:hover, .usp-list li:hover, .faq-list li:hover, .faq-accordion li:hover, .process-steps li:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 22px rgba(35,57,91,0.11);
}

/* SPACING & ALIGNMENT EXPLICIT PATTERNS (per requirements)*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* RESPONSIVE ALIGNMENT */
@media (max-width: 950px) {
  .card-container, .content-grid, .testimonials-grid, .feature-grid, .values-list, .service-card-grid, .process-steps {
    flex-direction: column;
    gap: 11px;
  }
}

/* COOKIE CONSENT BANNER ------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23395B;
  color: #fff;
  z-index: 9999;
  padding: 22px 5vw;
  box-shadow: 0 -5px 24px rgba(35,57,91,0.13);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 1.06rem;
  animation: cookie-slidein 0.82s cubic-bezier(.77,0,.18,1);
  border-radius: 15px 15px 0 0;
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .button {
  font-size: 1rem;
  background: #F7AC45;
  color: #23395B;
  padding: 9px 22px;
  font-family: 'Nunito';
  border-radius: 9px;
  font-weight: 800;
  border: none;
  margin-left: 0;
  min-width: 90px;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #F7AC45;
  box-shadow: 0 2px 8px #F7AC4550;
}
.cookie-banner .cookie-settings-btn {
  background: #E1E6EB;
  color: #23395B;
}
.cookie-banner .cookie-settings-btn:hover {
  color: #F7AC45;
}

/* COOKIE MODAL ------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 57, 91, 0.72);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.33s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #23395B;
  border-radius: 18px;
  box-shadow: 0 6px 42px rgba(35,57,91,0.25);
  width: 90vw;
  max-width: 460px;
  padding: 33px 30px 24px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: #23395B;
  font-family: 'Nunito';
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #E1E6EB;
  width: 100%;
  padding: 10px 0 10px 0;
  margin-bottom: 0;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Open Sans';
  color: #23395B;
  font-weight: 600;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #F7AC45;
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.cookie-modal .cookie-btn-row {
  margin-top: 17px;
  display: flex;
  gap: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: #23395B;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.19s;
}
.cookie-modal-close:hover {
  color: #F7AC45;
}
@media (max-width: 500px) {
  .cookie-modal {padding: 21px 9vw 16px 9vw;}
  .cookie-modal h2 {font-size: 1.15rem;}
}

/* MISCELLANEOUS: DISABLE GRID/COLUMNS */
/* No display: grid anywhere! */

/* NO ABSOLUTE POSITIONING FOR CONTENT (only used for cookie/modal close button per guidance) */

/* Z-INDEX & LAYERING ------------------ */
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10001; }
header { z-index: 30; }

/* SCROLLBAR STYLE for structured look */
::-webkit-scrollbar {
  width: 12px; background: #E1E6EB;
}
::-webkit-scrollbar-thumb {
  background: #23395B;
  border-radius: 7px;
}

