/* =====================
   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,
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;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F5F5;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F5F5;
  color: #212121;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #0288D1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A237E;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-variation-settings: "wght" 800;
  color: #1A237E;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.15;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  line-height: 1.18;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #fff;
  border-bottom: 4px solid #1A237E;
  box-shadow: 0 2px 8px rgba(26,35,126,0.04);
  position: relative;
  z-index: 1001;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1A237E;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-weight: 700;
}
nav a:hover, nav a:focus {
  background: #E3E8F5;
  color: #0288D1;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #0288D1;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-weight: 700;
  padding: 13px 32px;
  transition: background 0.19s, box-shadow 0.18s, transform 0.13s;
  box-shadow: 0 4px 24px rgba(2,136,209,0.08);
  cursor: pointer;
  margin-left: 20px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1A237E;
  box-shadow: 0 6px 24px rgba(26,35,126,0.13);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}

/* ============ MOBILE NAVIGATION ============ */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #1A237E;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 1022;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E3E8F5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2003;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.81,.01,.58,1.25);
  box-shadow: -4px 0 22px rgba(26,35,126,0.08);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #1A237E;
  padding: 18px 28px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #0288D1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 34px 24px 34px;
  height: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #1A237E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.016em;
  padding: 9px 0;
  border-radius: 5px;
  width: 100%;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3E8F5;
  color: #0288D1;
}

@media (max-width: 980px) {
  header .container nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =====================
   MAIN & SECTIONS
   ===================== */
main {
  min-height: 65vh;
  background: #F5F5F5;
  padding-bottom: 32px;
}
.section, main section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(26,35,126,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
main section:last-child {
  margin-bottom: 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  padding: 28px 22px;
  position: relative;
  flex: 1 1 280px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 26px rgba(26,35,126,0.16);
  transform: scale(1.022) translateY(-3px);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F5F5F5;
  border-left: 6px solid #0288D1;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.06);
  font-style: italic;
  color: #1A237E;
}
.testimonial-card p {
  margin-right: 12px;
}
.testimonial-card strong {
  color: #0288D1;
  font-style: normal;
  margin-left: auto;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 40px;
  height: 40px;
}

/* ========================
   ICONS (SVG & PNG)
   ======================== */
ul li img, .contact-details img, .feature-item img {
  width: 28px;
  height: 28px;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
}

/* ===============
   BUTTONS
   =============== */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.13s, box-shadow 0.17s, transform 0.12s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #0288D1;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #1A237E;
  color: #fff;
  width: 100%;
  padding: 0;
  margin: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 20px;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.18s, text-decoration 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #0288D1;
  text-decoration: underline;
}
footer img {
  height: 42px;
  margin-bottom: 16px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #fff; 
  align-items: flex-start;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.15s;
}
.contact-details a:hover, .contact-details a:focus {
  color: #0288D1;
}

/* =======================
   CARD / FEATURES / FAQ
   ======================= */
h3 + p {
  margin-bottom: 12px;
}
section ul li, section ol li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #212121;
  margin-bottom: 13px;
  position: relative;
}
section ul {
  margin: 12px 0 12px 18px;
  padding: 0;
}
section ol {
  margin: 12px 0 12px 20px;
  padding: 0;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1A237E;
  text-transform: uppercase;
}

/* ========================
   COOKIES CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(26,35,126,0.08);
  border-top: 3px solid #0288D1;
  z-index: 2206;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 24px 24px 24px;
  animation: bannerSlideUp 0.64s cubic-bezier(.76,.01,.44,1.02);
}
@keyframes bannerSlideUp {
  from { transform: translateY(40px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #212121;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #0288D1;
  color: #fff;
  box-shadow: 0 2px 8px rgba(2,136,209,0.08);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1A237E;
}
.cookie-banner .reject {
  background: #F5F5F5;
  color: #1A237E;
  border: 1.5px solid #1A237E;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E3E8F5;
  color: #0288D1;
}
.cookie-banner .settings {
  background: #fff;
  color: #0288D1;
  border: 1.5px solid #0288D1;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F5F5F5;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,35,126,0.18);
  z-index: 2302;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.32s cubic-bezier(.64,.01,.66,1.09);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 46px rgba(26,35,126,0.09);
  min-width: 90vw;
  max-width: 440px;
  padding: 36px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2309;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #1A237E;
  margin-bottom: 8px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1A237E;
  cursor: pointer;
  padding: 3px 6px;
}
.cookie-modal .modal-section {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #E3E8F5;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 400;
  color: #1A237E;
  user-select: none;
}
.toggle-switch {
  position: relative;
  width: 42px;
  height: 22px;
  margin-left: 8px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  width: 42px; height: 22px;
  background: #E3E8F5;
  border-radius: 22px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #0288D1;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 100%;
  transition: left 0.2s;
}
.toggle-switch input:checked + .toggle-slider:before {
  left: 24px;
}
.cookie-modal .essential label {
  color: #777;
}
.cookie-modal .footer-btns {
  display: flex;
  gap: 15px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal .footer-btns button {
  outline: none;
  border: none;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal .save-cookies {
  background: #0288D1;
  color: #fff;
}
.cookie-modal .save-cookies:hover{background:#1A237E;}
.cookie-modal .cancel-cookies {
  background: #F5F5F5;
  color: #1A237E;
  border: 1.2px solid #0288D1;
}

/* ===============
   GEOMETRIC SHAPES
   =============== */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -36px; left: 48px;
  width: 75px; height: 75px;
  background: #E3E8F5;
  border-radius: 15% 85% 40% 60% / 60% 32% 65% 40%;
  z-index: 0;
  opacity: .22;
  pointer-events:none;
}
.section:nth-child(even)::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -40px; right: 36px;
  width: 58px; height: 58px;
  background: #0288D1;
  border-radius: 46% 54% 60% 40% / 50% 35% 65% 50%;
  z-index: 0;
  opacity: .13;
  pointer-events: none;
}
.section, main section {
  overflow: hidden;
  position: relative;
  z-index:1;
}

/* ============
   RESPONSIVE
   ============ */
@media (max-width: 1100px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 800px;
  }
  header .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  main section, .section {
    padding: 28px 5px;
    margin-bottom: 48px;
    border-radius: 15px;
  }
  .container {
    padding: 0 5px;
  }
  .footer .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .content-grid, .card-container {
    gap: 12px;
  }
  .card {
    padding: 16px 10px;
    font-size: 0.98rem;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
    font-size: 0.97rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-top: 26px;
    padding-bottom: 16px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .section, main section {
    padding: 14px 2px;
  }
}

/* ==============
   PRINT
   ============== */
@media print{
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, main section {
    background: #fff !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
}

/* ==============================
   CUSTOM UTILITIES
   ============================== */
.mt-16 { margin-top: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* ==============================
   GEOMETRIC STRUCTURED EXTRAS
   ============================== */
.section, main section {
  border: 2px solid #E3E8F5;
}
.card, .testimonial-card {
  border: 1.5px solid #E3E8F5;
}
.card {
  border-radius: 12px;
}

/* ==============================
   TYPOGRAPHY BUTTONS & TAGS
   ============================== */
.tag {
  display: inline-flex;
  align-items: center;
  background: #0288D1;
  color: #fff;
  border-radius: 14px;
  font-size: 0.85rem;
  padding: 4px 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  margin-right: 6px;
  font-weight: bold;
  letter-spacing: .05em;
}

/* ==============================
   FORMS (optional fields, add if needed)
   ============================== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.4px solid #E3E8F5;
  padding: 11px 12px;
  width: 100%;
  margin-bottom: 18px;
  background: #F5F5F5;
  color: #212121;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #0288D1;
  background: #fff;
  outline: none;
}

/*
==============================
SCROLLBAR
==============================
*/
::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #0288D1;
  border-radius: 8px;
}

/*
==============================
ACCESSIBILITY HOVERS/FOCUS
==============================
*/
:focus {
  outline: 2px solid #0288D1;
  outline-offset: 0.5px;
}

/* ==============================
   END OF CSS
   ============================== */
