/*--- CSS RESET & BASE ---*/
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #14334A;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
:focus-visible {
  outline: 2px solid #F4BE43;
  outline-offset: 2px;
}

/*--- CSS VARIABLES (fallbacks included) ---*/
:root {
  --kc-primary: #14334A;
  --kc-secondary: #D8E1E9;
  --kc-accent: #F4BE43;
  --kc-accent2: #00B5FF;
  --kc-bg-card: #fff;
  --kc-bg-section: #D8E1E9;
  --kc-danger: #FF5263;
  --kc-success: #47DE7B;
  --kc-shadow: 0 10px 24px rgba(20,51,74, 0.14);
}

/*--- UTILITIES ---*/
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #D8E1E9;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
    border-radius: 14px;
  }
}

/*--- HEADER ---*/
header {
  background: #14334A;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 24px rgba(20,51,74,0.10);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 76px;
}
header img {
  height: 48px;
  margin-right: 16px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  transition: color .18s;
  position: relative;
  padding: 8px 6px;
}
header nav a:hover, header nav a.active {
  color: #F4BE43;
}
.cta-btn {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: bold;
  color: #14334A;
  background: #F4BE43;
  padding: 12px 36px;
  border-radius: 8px;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(244,190,67,0.10);
  transition: background .18s, box-shadow .16s, color .16s;
  display: inline-block;
  border: 2px solid #F4BE43;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff300;
  color: #14334A;
  box-shadow: 0 6px 16px rgba(244,190,67,0.18);
  border-color: #14334A;
}
/*--- MOBILE MENU BUTTONS ---*/
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 3002;
  background: #F4BE43;
  color: #14334A;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 30px;
  border: 2px solid #F4BE43;
  margin-left: 18px;
  transition: background .2s, color .18s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: #F4BE43;
}
@media (max-width: 988px) {
  header .container nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/*--- MOBILE MENU ---*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #14334A;
  transform: translateX(-110vw);
  transition: transform .36s cubic-bezier(.85,.02,.17,1);
  z-index: 3200;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  box-shadow: 0 3px 29px rgba(20,51,74,0.35);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 30px;
  color: #F4BE43;
  background: transparent;
  border: none;
  z-index: 3400;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  margin-top: 85px;
  padding: 32px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  border-radius: 6px;
  padding: 14px 22px;
  text-transform: uppercase;
  width: 90vw;
  text-align: center;
  transition: background .18s, color .16s;
  margin: 0 auto;
  display: block;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4BE43;
  color: #14334A;
}

/*--- HERO SECTION ---*/
.hero {
  background: linear-gradient(88deg, #F4BE43 0%, #00B5FF 100%);
  color: #14334A;
  position: relative;
  padding: 52px 0 48px 0;
  margin-bottom: 48px;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 12px;
  text-shadow: 0 3px 10px rgba(244,190,67,0.12);
}
.hero p {
  font-size: 20px;
  font-weight: 500;
}
.hero .cta-btn {
  font-size: 20px;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 28px 0;
    margin-bottom: 32px;
  }
  .hero .content-wrapper { gap: 18px; }
  .hero h1 {
    font-size: 32px;
    text-align: left;
  }
  .hero p {
    font-size: 16px;
    text-align: left;
  }
  .hero .cta-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}

/*--- SECTIONS, CARDS, GRIDS ---*/
.feature-grid,
.service-cards,
.service-grid,
.review-list,
.comparison-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div,
.service-cards > div,
.service-grid > div,
.review-list > div,
.comparison-list > div,
.summary-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--kc-shadow);
  padding: 30px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  transition: transform .14s, box-shadow .14s;
}
.summary-box,
.text-section,
.review-list .text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--kc-shadow);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-grid > div:hover,
.service-cards > div:hover,
.service-grid > div:hover,
.comparison-list > div:hover,
.summary-box:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 10px 38px rgba(244,190,67,0.14), var(--kc-shadow);
}
.feature-grid img,
.card img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.service-cards > div strong,
.service-grid > div span,
.service-grid > div strong {
  color: var(--kc-accent2, #00B5FF);
  font-weight: bold;
  font-size: 18px;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.service-cards > div a,
.service-grid > div a {
  font-size: 15px;
  color: #14334A;
  text-decoration: underline;
  margin-top: auto;
  transition: color 0.18s;
  font-family: 'Roboto Slab', serif;
}
.service-cards > div a:hover,
.service-grid > div a:hover {
  color: var(--kc-accent2, #00B5FF);
}
@media (max-width: 988px) {
  .feature-grid, .service-cards, .service-grid, .review-list, .comparison-list {
    gap: 16px;
  }
  .feature-grid > div,
  .service-cards > div,
  .service-grid > div,
  .review-list > div,
  .comparison-list > div,
  .summary-box {
    min-width: 160px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-cards, .service-grid, .review-list, .comparison-list {
    flex-direction: column;
    gap: 16px;
  }
}

/*--- TESTIMONIALS ---*/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 30px 0 rgba(20,51,74,0.14);
  padding: 20px 28px 24px 28px;
  margin-bottom: 20px;
  min-width: 270px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  border-left: 7px solid var(--kc-accent2, #00B5FF);
  color: #14334A;
  font-size: 16px;
  transition: box-shadow .16s, transform .14s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px rgba(244,190,67,0.15), 0 4px 30px 0 rgba(20,51,74,0.21);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card p {
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #14334A;
  margin-bottom: 6px;
}
.testimonial-card span {
  margin-top: 0px;
  font-size: 14px;
  color: #00B5FF;
  font-weight: 700;
  font-family: 'Roboto Slab',serif;
}
.stars {
  color: #F4BE43;
  font-size: 20px;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(244,190,67,0.15);
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    min-width: 110px;
    padding: 14px 10px 18px 15px;
  }
}

/*--- CTA SECTIONS ---*/
.cta {
  background: #00B5FF;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 48px;
  box-shadow: 0 2px 22px rgba(0,181,255,0.11);
  padding: 32px 0;
}
.cta .container { align-items: center; justify-content: center; }
.cta .content-wrapper { align-items: center; text-align: center; }
.cta h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}
.cta p { font-size: 18px; margin-bottom: 16px; }
.cta .cta-btn {
  font-size: 18px;
  background: #F4BE43;
  color: #14334A;
  border: 2px solid #F4BE43;
  box-shadow: 0 1px 5px rgba(244,190,67,0.13);
  transition: background .19s, box-shadow .13s;
}
.cta .cta-btn:hover {
  background: #fff300;
  box-shadow: 0 6px 16px rgba(244,190,67,0.24);
}
@media (max-width: 768px) {
  .cta h2 { font-size: 22px; }
  .cta p { font-size: 15px; }
  .cta { border-radius: 12px; }
}

/*--- FORMS, SELECTS ---*/
label {
  font-weight: bold;
  color: #14334A;
  margin-right: 8px;
}
input[type="text"],
input[type="email"],
textarea, select {
  border-radius: 8px;
  border: 1.5px solid #D8E1E9;
  padding: 10px 14px;
  font-size: 16px;
  background: #fff;
  color: #14334A;
  transition: border .17s;
  margin-bottom: 8px;
  width: 100%;
}
select:focus, input:focus, textarea:focus {
  border-color: #00B5FF;
  box-shadow: 0 0 0 2px #F4BE43;
}
.review-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .review-tools {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/*--- TYPOGRAPHY CLASSES ---*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-style: normal;
  color: #14334A;
  font-weight: bold;
}
h1 { font-size: 48px; font-weight: 900; margin-bottom: 18px; }
h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
h3 { font-size: 22px; font-weight: 700; }
h4, h5, h6 { font-size: 18px; font-weight: 600; }
p, li, div, span, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #14334A;
}
strong { font-weight: bold; }
em { font-style: italic; }
a { cursor: pointer; }

@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
}

/*--- TEXT SECTIONS (eg .text-section, .faq-list) ---*/
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--kc-shadow);
  padding: 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul,
.text-section ol {
  list-style: inside disc;
  margin-left: 8px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 5px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list details {
  background: #D8E1E9;
  border-radius: 9px;
  padding: 12px 14px;
  box-shadow: none;
}
.faq-list summary {
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  color: #14334A;
  margin-bottom: 8px;
  outline: none;
}
.faq-list details[open] summary {
  color: #00B5FF;
}
.faq-list .text-section { box-shadow: none; background: transparent; padding: 0; }

/*--- LISTS & TABLES ---*/
ol, ul {
  margin-bottom: 12px;
  padding-left: 27px;
}
ol li {
  margin-bottom: 8px;
  list-style-type: decimal;
}
ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid #D8E1E9;
}
th {
  background: #00B5FF;
  color: #fff;
  font-family: 'Roboto Slab', serif;
}
tr:last-child td { border-bottom: none; }

/*--- BUTTONS & LINKS ---*/
button,
.btn,
input[type=submit] {
  font-family: 'Roboto Slab', serif;
  background: #F4BE43;
  color: #14334A;
  border: 2px solid #F4BE43;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s, color .18s, border .15s, box-shadow .18s;
  box-shadow: 0 2px 14px rgba(244,190,67,0.10);
}
button:hover, .btn:hover, input[type=submit]:hover {
  background: #fff300;
  color: #14334A;
  box-shadow: 0 3px 21px rgba(244,190,67,0.13);
  border-color: #00B5FF;
}

/*--- FOOTER ---*/
footer {
  background: #14334A;
  color: #fff;
  padding: 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  gap: 0;
  padding: 0 20px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  padding: 40px 0 28px 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
footer nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  transition: color .17s;
}
footer nav a:hover {
  color: #F4BE43;
}
footer strong { font-size: 16px; color: #F4BE43; }
footer address, footer div {
  font-size: 14px;
  color: #D8E1E9;
  font-style: normal;
  margin-bottom: 3px;
}
footer a { color: #F4BE43; }
@media (max-width: 988px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    padding: 25px 0 18px 0;
  }
  footer nav { flex-direction: row; gap: 16px; margin-bottom: 8px; }
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #14334A;
  border-top: 4px solid #F4BE43;
  box-shadow: 0 -4px 22px rgba(20,51,74,0.18);
  padding: 20px 22px 16px 22px;
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: slideUpB 0.27s cubic-bezier(.33,1.09,.73,1) 1;
  font-size: 15px;
}
@keyframes slideUpB {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  background: #F4BE43;
  color: #14334A;
  border: 2px solid #F4BE43;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 15px;
  margin: 0 2px;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  transition: background .17s, color .13s, border .13s;
  box-shadow: 0 1px 6px rgba(244,190,67,0.08);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff300;
  border-color: #00B5FF;
}
.cookie-banner .cookie-secondary {
  background: #00B5FF;
  color: #fff;
  border-color: #00B5FF;
  margin-right: 2px;
}
.cookie-banner .cookie-secondary:hover {
  background: #fff;
  color: #00B5FF;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 5px 12px 7px;
    font-size: 14px;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
  }
}
/*--- COOKIE MODAL ---*/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,51,74,0.57);
  z-index: 3750;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(20,51,74,0.27);
  min-width: 340px;
  max-width: 90vw;
  padding: 36px 32px 24px 32px;
  z-index: 3850;
  animation: fadeInModal .19s cubic-bezier(.35,1.15,.63,1) 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #14334A;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 16px;
}
.cookie-category input[type=checkbox] {
  accent-color: #00B5FF;
  width: 22px;
  height: 22px;
}
.cookie-essential {
  color: #aaa !important;
}
.cookie-modal .cookie-btns {
  margin-top: 10px;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 5vw 12px 5vw;
    min-width: unset;
    max-width: 97vw;
    border-radius: 12px;
  }
}

/*--- FLEXBOX MANDATORY CLASSES ---*/
.card-container,
.card-grid,
.features,
.summary-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--kc-shadow);
  transition: box-shadow .15s, transform .13s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(0,181,255,0.13), var(--kc-shadow);
  transform: translateY(-5px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid, .features, .summary-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/*--- SPACING & ALIGNMENT ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }

/*--- MICRO-INTERACTIONS & TRANSITIONS ---*/
a, button, .cta-btn, .card, .testimonial-card {
  transition: background .20s, color .15s, box-shadow .17s, transform .13s;
}
details[open] summary:after {
  content: '▼';
  margin-left: 6px;
  font-size: 13px;
}
details summary:after {
  content: '►';
  margin-left: 6px;
  font-size: 13px;
}

/*--- VIBRANT ENERGETIC STYLE SPECIFICS ---*/
.section, .feature-grid > div, .service-cards > div, .service-grid > div, .summary-box, .content-wrapper {
  border-left: 8px solid #F4BE43;
}
.testimonial-card {
  border-left: 7px solid #00B5FF;
}
.hero {
  border-bottom: 8px solid #00B5FF;
}
.cta {
  border-left: 8px solid #F4BE43;
  border-bottom: 8px solid #00B5FF;
}
.cta-btn, .btn, button {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card, .summary-box, .testimonial-card {
  background: #fff;
  box-shadow: 0 4px 32px rgba(20,51,74,0.10);
  border-radius: 18px;
}

/*--- HIGHLIGHTING TABLE ROWS & DETAILS ---*/
tr:nth-child(2n) td {
  background: #F6FBFF;
}
details[open] .text-section { background: #EAFDFF; }

/*--- PREVENT OVERLAPPING ---*/
.card, .card-grid > *, .feature-grid > *, .service-cards > *, .service-grid > *, .testimonial-card, .text-section, .summary-box {
  min-width: 0;
  box-sizing: border-box;
}

/*--- CUSTOM SCROLLBAR for ENERGY ---*/
::-webkit-scrollbar {
  width: 11px;
  background: #D8E1E9;
}
::-webkit-scrollbar-thumb {
  background: #00B5FF;
  border-radius: 7px;
  border: 2px solid #F4BE43;
}
::-webkit-scrollbar-thumb:hover {
  background: #14334A;
}

/*--- COLOR CONTRAST + A11y TWEAKS ---*/
.text-section, .card, .testimonial-card, .summary-box {
  color: #14334A;
  background: #fff;
}
.testimonial-card p, .testimonial-card span {
  color: #14334A;
}

/*--- MISCELLANEOUS ---*/
hr {
  border: none;
  height: 1.5px;
  background: #D8E1E9;
  margin: 20px 0;
}
address {
  font-style: normal;
  color: #14334A;
}

/*--- ACTIVITY INDICATOR, if needed ---*/
.loader {
  border: 4px solid #F4BE43;
  border-top: 4px solid #00B5FF;
  border-radius: 50%;
  width: 36px; height: 36px;
  animation: spin 0.99s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--- END CSS ---*/
