/* ---- CSS 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;  scroll-behavior: smooth; }
*, *:before, *:after {  box-sizing: inherit; }
body {  line-height: 1.5;  background: #F5F5F5;  color: #1C313A; }
ul, ol {  list-style: none; }
a {  text-decoration: none;  color: inherit;  transition: color 0.2s; }
a:focus { outline: 2px solid #1976D2; }
img {  max-width: 100%;  display: block; }


/* ---- Brand Fonts ---- */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,900&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F5F5;
  color: #16232b;
  font-size: 16px;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; color: #1976D2; }
h2 { font-size: 2rem; margin-bottom: 18px; color: #1C313A; }
h3 { font-size: 1.3rem; margin-bottom: 12px; color: #1976D2; }
h4, h5, h6 { color: #333; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
strong, b { font-weight: 700; }
blockquote {
  font-style: italic;
  background: #E3EEFD;
  border-left: 4px solid #1976D2;
  margin: 20px 0;
  padding: 16px 24px;
  border-radius: 8px;
  color: #1C313A;
}

/* ---- Layout & Containers ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px 2px rgba(28,49,58,0.08);
}

/* ---- Header & Nav ---- */
header {
  background: #fff;
  border-bottom: 4px solid #1976D2;
  box-shadow: 0 4px 14px -6px rgba(28,49,58,0.10);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1C313A;
  position: relative;
}
.main-nav a:not(.btn-primary):hover {
  color: #1976D2;
  text-shadow: 0 2px 8px rgba(25,118,210,0.15);
}

.btn-primary, .main-nav a.btn-primary {
  background: #1976D2;
  color: #fff !important;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px 0 rgba(25,118,210,0.05);
}
.btn-primary:hover, .main-nav a.btn-primary:hover {
  background: #1C313A;
  color: #E3EEFD !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(25,118,210,0.12);
}

.btn-secondary {
  background: #fff;
  color: #1976D2 !important;
  border: 2px solid #1976D2;
  border-radius: 24px;
  padding: 10px 26px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background .2s, color .2s, border-color .2s;
  margin-top: 8px;
  box-shadow: 0 2px 10px 0 rgba(25,118,210,0.04);
}
.btn-secondary:hover {
  background: #1976D2;
  color: #fff !important;
  border-color: #1C313A;
}

.mobile-menu-toggle {
  display: none;
  background: #1976D2;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 51;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1C313A;
}

/* ---- Mobile Nav Styles ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 310px;
  background: #1976D2;
  color: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.43,.04,.46,.98);
  box-shadow: -4px 0 40px 0 rgba(28,49,58,0.15);
  display: flex;
  flex-direction: column;
  padding: 32px 20px 20px 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border: none;
  position: absolute;
  right: 18px;
  top: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #E3EEFD; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 50px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 9px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E3EEFD;
  background: rgba(255,255,255,0.11);
}


/* ---- Hero Section ---- */
.hero {
  display: flex;
  background: #E3EEFD;
  align-items: center;
  margin-bottom: 60px;
  min-height: 370px;
  box-shadow: 0 4px 32px 0 rgba(25,118,210,0.10);
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1976D2;
  text-shadow: 0 1px 8px rgba(25,118,210,0.12);
}
.hero p {
  color: #1C313A;
  font-size: 1.19rem;
  max-width: 600px;
  margin-bottom: 14px;
}

/* ---- Features, Services, etc ---- */
.features, .services, .about, .faq, .contact, .team, .legal, .confirmation, .testimonials, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Feature grid (electric points) */
.feature-grid, .icon-points, .category-list, .product-grid, .article-list, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .icon-points li, .category-list li, .product-grid li, .article-list li, .team-bios li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 2px rgba(25,118,210,0.07);
  padding: 24px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2px solid transparent;
}
.feature-grid li:hover, .icon-points li:hover, .category-list li:hover, .team-bios li:hover {
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.13);
  transform: translateY(-5px) scale(1.03);
  border-color: #1976D2;
}
.feature-grid img, .icon-points img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
}
.feature-grid h3, .icon-points h3, .category-list h3 {
  font-size: 1.19rem;
  margin-bottom: 6px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  color: #1976D2;
}
.feature-grid p, .icon-points li, .category-list p {
  color: #1C313A;
  font-size: 1rem;
}

/* Card Container & Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(25,118,210,0.09);
  padding: 18px 22px;
  flex: 1 1 250px;
  transition: box-shadow 0.15s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px 2px rgba(25,118,210,0.14);
  transform: translateY(-2px);
}

.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 {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 2px 16px 2px rgba(25,118,210,0.10);
  border-radius: 16px;
  margin-bottom: 20px;
  border-left: 8px solid #1976D2;
  flex: 1 1 320px;
  color: #1C313A;
  font-size: 1.05rem;
}
.testimonial-card .stars {
  font-size: 1.4rem;
  color: #fbc02d;
  margin-right: 8px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(251,192,45,0.10);
}
.testimonial-author {
  margin-left: auto;
  font-size: .92rem;
  color: #1976D2;
  font-style: italic;
}

/* Section list bullets & timeline */
.section ul, .content-wrapper ul {
  padding-left: 26px;
  color: #1C313A;
}
.section ul li, .content-wrapper ul li {
  margin-bottom: 8px;
  position: relative;
  font-size: 1rem;
}
.section ul li:before, .timeline li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #1976D2;
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 18px;
  padding-left: 18px;
}
.timeline li {
  font-size: 1rem;
  color: #1C313A;
  margin-bottom: 4px;
  line-height: 1.4;
}

.motivation-quotes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.motivation-quotes blockquote {
  flex: 1 1 260px;
}
.value-icons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px 0 10px 0;
}
.value-icons span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  color: #1976D2;
  font-size: 1.15rem;
  background: #E3EEFD;
  border-radius: 20px;
  padding: 8px 16px;
}
.value-icons img {
  width: 28px; height: 28px; object-fit: contain;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background-color: #F5F5F5;
  margin: 10px 0;
}
.contact-details span, .contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1C313A;
}
.footer-content .contact-details span {
  font-size: .98rem;
  margin-bottom: 3px;
}
.map-placeholder {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 2px rgba(25,118,210,0.07);
  padding: 22px;
  margin-top: 24px;
  font-size: 1rem;
}

/* Cards, articles */
.article-list li, .product-grid li {
  background: #E3EEFD;
  border-radius: 16px;
  box-shadow: 0 2px 14px 1px rgba(25,118,210,0.05);
  padding: 18px 20px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.article-list h3, .product-grid strong {
  color: #1976D2;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700; font-size: 1.09rem;
}

/* Footer  */
footer {
  background: #1C313A;
  color: #fff;
  padding: 54px 0 32px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 42px 0 0;
}
.footer-nav a {
  color: #BFE9FF;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-content img {
  margin-bottom: 16px;
  max-width: 70px;
}
footer .contact-details {
  color: #c3e0f8;
  gap: 6px;
}

/* CTA Section */
.cta {
  background: #1976D2;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 2px rgba(25,118,210,0.13);
  margin-top: 18px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.cta h2 {
  color: #fff;
  font-size: 2.0rem;
}
.cta p {
  color: #E3EEFD;
}
.cta .btn-primary {
  background: #fff;
  color: #1976D2 !important;
  border: 2px solid #fff;
  margin-top: 8px;
  font-weight: 900;
  box-shadow: 0 2px 12px rgba(28,49,58,0.13);
}
.cta .btn-primary:hover {
  background: #E3EEFD;
  border-color: #E3EEFD;
  color: #1C313A !important;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.faq-item {
  background: #E3EEFD;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(25,118,210,0.07);
  padding: 23px 28px;
  margin-bottom: 9px;
}
.faq-item h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
  color: #1976D2;
}

/* Legal section */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 2px rgba(25,118,210,0.09);
}

/* Confirmation page */
.confirmation {
  background: #E3EEFD;
  border-radius: 20px;
  box-shadow: 0 6px 22px 2px rgba(25,118,210,0.08);
  margin-bottom: 30px;
  padding: 40px 20px;
}

/* Micro-interactions & Transitions */
a, button, .btn-primary, .btn-secondary, .card, .feature-grid li, .testimonial-card, .faq-item {
  transition: background 0.18s, color 0.16s, border 0.16s, box-shadow 0.19s, transform 0.2s;
}

/* Focus states */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 3px solid #fbc02d;
  outline-offset: 2px;
  z-index: 10;
}

/* --------- COOKIE CONSENT BANNER --------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  width: 100vw;
  background: #1C313A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 16px;
  box-shadow: 0 -4px 30px rgba(28,49,58,0.16);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.32s, transform 0.36s cubic-bezier(.42,.08,.68,.94);
}
.cookie-consent-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .btn-cookie {
  background: #1976D2;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  margin-left: 12px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.22s, box-shadow 0.22s;
}
.cookie-consent-banner .btn-cookie:hover {
  background: #16232b;
}
.cookie-consent-banner .btn-cookie-settings {
  background: #fff;
  color: #1976D2;
  border: 2px solid #1976D2;
  margin-left: 12px;
}
.cookie-consent-banner .btn-cookie-settings:hover {
  background: #E3EEFD;
  color: #16232b;
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed; z-index: 90;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(40,61,98,.72);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(25,118,210,0.24);
  padding: 36px 33px 30px 33px;
  min-width: 330px;
  max-width: 98vw;
  color: #1C313A;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal h2 {
  color: #1976D2;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-modal .cookie-toggle input[type=checkbox] {
  accent-color: #1976D2;
}
.cookie-modal .btn-cookie {
  margin-top: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px; right: 16px;
  background: none; border: none; font-size: 1.6rem;
  color: #1976D2; cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover { color: #1C313A; }

/* ------ Responsive Design ------ */
@media (max-width: 1020px) {
  .container {max-width: 98vw;}
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  h1 { font-size: 2rem; }
  .cta {padding: 28px 0; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .icon-points, .category-list, .product-grid, .article-list, .team-bios, .content-grid, .motivation-quotes {
    flex-direction: column;
    gap: 16px;
  }
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .hero {
    min-height: 180px;
    padding: 32px 0;
  }
  .hero h1 { font-size: 1.4rem; }
  .cta h2 { font-size: 1.24rem; }
  .section, .features, .services, .about, .faq, .contact, .team, .legal, .confirmation {
    padding: 18px 5vw;
  }
  .content-wrapper { gap: 16px; }
  .footer-content img { max-width: 53px; }
  .cookie-modal { padding: 18px 8px 18px 18px; min-width: 190px; }
}

@media (max-width: 520px) {
  .container {
    padding: 0 6px;
  }
  .section, .features, .services, .about, .faq, .contact, .team, .legal, .confirmation {
    padding: 14px 2vw;
    margin-bottom: 32px;
  }
  .btn-primary, .main-nav a.btn-primary {
    padding: 11px 12vw;
    font-size: .99rem;
  }
  .hero p { font-size: .95rem; }
  .testimonial-card, .card, .faq-item, .product-grid li, .article-list li {
    padding: 12px 10px;
  }
  footer { padding-left: 0; padding-right: 0; }
  .cookie-consent-banner { flex-direction: column; gap: 12px; font-size: 0.99rem; padding: 20px 7px; }
}

/* Hide the overlay scroll on mobile menu active */
body.mobile-menu--open {
  overflow: hidden;
}

/* ------ Utility Classes & Extras ------ */
.text-section {
  margin: 18px 0 8px 0;
  background: #E3EEFD;
  border-radius: 13px;
  padding: 14px 20px;
  color: #1C313A;
  font-size: 1.02rem;
}

/* Minor fixes */
section { margin-bottom: 60px; }
.section { box-shadow: 0 2px 22px 2px rgba(28,49,58,0.09); }

/* Ensure min 20px margin between all content cards/sections */
.card, .feature-grid li, .icon-points li, .testimonial-card, .faq-item, .card-container > * {
  margin-bottom: 20px !important;
}

/* High-visibility focus for accessibility */
:focus-visible {
  outline: 2.5px solid #FBC02D;
  outline-offset: 2px;
}

/* --- End of CSS --- */