/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #161a20;
  background: #F4F7FB;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #004085;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #288735;
  outline: none;
}
strong { font-weight: 700; }
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
li + li { margin-top: 10px; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #00245A;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #004085;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #288735;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #004085;
}
p, .text-section {
  font-size: 1.08rem;
  margin-bottom: 16px;
}
.subline {
  font-size: 1.22rem;
  color: #417dbe;
  margin-bottom: 24px;
}

/* CONTAINER & SPACING UTILITIES */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEXBOX LAYOUTS */
.feature-grid,
.faq-list,
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div,
.card,
.faq-list > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,32,66,0.10);
  padding: 28px 18px 22px 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 200px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover,
.card:hover,
.faq-list > div:hover {
  box-shadow: 0 4px 20px 0 rgba(0,32,66,0.20);
  transform: translateY(-6px) scale(1.04);
}
.card-container { 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; }

/* HERO SECTION */
.hero {
  background: #004085;
  color: #fff;
  padding: 68px 0 56px 0;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  text-shadow: 0px 3px 22px rgba(30,55,110,0.35);
}
.hero .subline {
  color: #F7FF43;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: #F7FF43;
  color: #00245A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 15px 36px;
  border: none;
  border-radius: 35px;
  letter-spacing: 1px;
  box-shadow: 0 2px 14px 0 rgba(247,255,67,0.10);
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.15s, box-shadow 0.2s;
  margin-top: 12px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #ffe500;
  color: #288735;
  transform: scale(1.07);
  box-shadow: 0 6px 24px 0 rgba(40,135,53,0.18);
  outline: none;
}

/* NAVIGATION */
header {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 2px 12px 0 rgba(0,32,66,0.09);
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 18px;
}
header a img {
  max-height: 52px;
  padding: 14px 12px 14px 14px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  color: #004085;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F7FF43;
  color: #288735;
  transform: scale(1.06);
}
.main-nav .cta-btn {
  background: #288735;
  color: #fff;
  margin-top: 0;
  margin-left: 12px;
  font-size: 1.09rem;
  padding: 10px 28px;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #004085;
  color: #F7FF43;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #004085;
  margin-left: 14px;
  cursor: pointer;
  padding: 6px;
  z-index: 1200;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #dde5ef;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,40,110,0.98);
  z-index: 3000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  transition: transform 0.33s cubic-bezier(0.77,0,0.175,1);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 2.1rem;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  z-index: 3010;
  transition: color 0.14s;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F7FF43;
  font-size: 1.3rem;
  padding: 12px 0 12px 30px;
  border-radius: 7px 0 0 7px;
  min-width: 220px;
  transition: background 0.13s, color 0.13s, padding-left 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #288735;
  color: #fff;
  padding-left: 40px;
}

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1023px) {
  header {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.24rem; }
  .hero { padding: 38px 0 24px 0; }
  .section { padding: 25px 8px; margin-bottom: 32px; }
  .feature-grid, .faq-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .card, .faq-list > div {
    min-width: unset;
    width: 100%;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .text-image-section { flex-direction: column; gap: 16px; }
}

/* FOOTER */
footer {
  background: #fff;
  padding: 24px 0 10px 0;
  border-top: 4px solid #004085;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #417dbe;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #004085;
  color: #F7FF43;
}
footer .text-section {
  color: #161a20;
  text-align: center;
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* PRICE TABLE */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 13px 0 rgba(40,135,53,0.10);
}
.price-table th, .price-table td {
  padding: 14px 10px;
  text-align: left;
  font-size: 1.09rem;
}
.price-table th {
  background: #F7FF43;
  color: #004085;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
}
.price-table tr:nth-child(even) td {
  background: #f4f4fc;
}
.price-table tr:nth-child(odd) td {
  background: #fff;
}
.price-table td:first-child { font-weight: 700; color: #288735; }

/* SERVICE LISTS */
.service-list {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}
.service-list li {
  margin-bottom: 14px;
  background: #e4fada;
  color: #128529;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 15px;
  box-shadow: 0 1px 5px #28873510;
  position: relative;
}

.service-list li strong { color: #004085; font-weight: 700; }

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 18px 0 rgba(0,64,133,0.08), 0 1.5px 6px 0 #28873510;
  margin-bottom: 22px;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 36px 0 rgba(0,64,133,0.19);
  transform: translateY(-7px) scale(1.025);
}
.testimonial-card p {
  color: #171c22;
  font-size: 1.06rem;
  margin: 0 0 2px 0;
}
.testimonial-name {
  color: #288735;
  font-weight: bold;
  font-size: 1.04rem;
}

/* FAQ */
.faq-list { margin-top: 10px; margin-bottom: 24px; }
.faq-list > div {
  background: #fffbe6;
  border-left: 6px solid #F7FF43;
  border-radius: 13px;
  box-shadow: 0 1.5px 7px 0 #00408510;
  margin-bottom: 20px;
}
.faq-list h3 {
  margin: 0 0 10px 0;
  color: #004085;
  font-size: 1.15rem;
}
.faq-list p {
  margin-bottom: 0;
}

.faq-search {
  background: #e6f6ff;
  padding: 15px 16px;
  border-radius: 11px;
  font-size: 1rem;
  color: #004085;
}
.faq-search a {
  color: #288735;
  font-weight: bold;
}

/* MAP & CONTACT */
.map-location {
  margin-top: 8px;
  background: #e4fada;
  padding: 10px 20px;
  border-radius: 13px;
  color: #128529;
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
}

/* LEGAL & POLICY SECTIONS */
.legal-text {
  background: #f4f7fb;
  border-left: 6px solid #288735;
  padding: 24px 22px;
  border-radius: 13px;
  margin-bottom: 16px;
  color: #004085;
}
.legal-text ul {
  margin-bottom: 0;
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #004085;
  color: #F7FF43;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  z-index: 4010;
  padding: 22px 8px 19px 8px;
  box-shadow: 0 -2px 16px 0 rgba(0,64,133,0.17);
  transition: transform 0.29s cubic-bezier(0.77,0,0.175,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner p {
  color: #fff;
  font-size: 1.03rem;
  margin: 0 0 5px 0;
}
.cookie-banner a {
color: white !important;}
.cookie-banner .cookie-btn {
  background: #F7FF43;
  color: #004085;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  margin-right: 9px;
  margin-top: 6px;
  padding: 9px 22px;
  cursor: pointer;
  box-shadow: 0 1.5px 7px 0 #28873516;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #288735;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #F7FF43;
  border: 2px solid #F7FF43;
  margin-left: 9px;
  padding: 8px 16px;
  font-weight: 700;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F7FF43;
  color: #288735;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 4020;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(0,40,110,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #004085;
  padding: 34px 32px 22px 32px;
  min-width: 320px;
  max-width: 95vw;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0,64,133,0.21);
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content h3 {
  color: #288735;
  font-size: 1.23rem;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 22px; right: 21px;
  background: none;
  border: none;
  color: #288735;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-content .cookie-modal-close:hover,
.cookie-modal-content .cookie-modal-close:focus {
  color: #004085;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #288735;
  width: 22px;
  height: 22px;
  border-radius: 5px;
}
.cookie-category label {
  margin-left: 6px;
}
.essential-cookies {
  font-style: italic;
  color: #16734c;
  opacity: 0.66;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  background: #F7FF43;
  color: #004085;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: #288735;
  color: #fff;
}

/* ICONS INSIDE LISTS */
.text-section ul li img {
  vertical-align: middle;
  margin-right: 7px;
  height: 1.1em;
}

/* GENERAL SHADOWS, BORDERS, RADIUS */
.card, .feature-grid > div, .faq-list > div, .testimonial-card, .price-table, .cookie-modal-content {
  border-radius: 14px;
  box-shadow: 0 2px 15px 0 rgba(2,38,75,0.09);
}

/* UTILITY: SECTION CTAS */
.cta {
  background: linear-gradient(93deg, #E4FC45 60%, #37e6b4 100%);
  background: #F7FF43;
  color: #004085;
  margin-bottom: 60px;
  box-shadow: 0 2px 25px 0 rgba(40,135,53,0.09);
}
.cta h2, .cta p { color: #00245A; }

/* MICRO-INTERACTIONS */
button, a, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-modal-content .cookie-modal-close {
  transition: background 0.17s, color 0.13s, transform 0.18s, box-shadow 0.17s;
}

/* SCROLLBAR (CHROME ONLY) */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F7FB;
}
::-webkit-scrollbar-thumb {
  background: #004085;
  border-radius: 8px;
}

/* FOCUS STATES */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 3px solid #F7FF43;
  outline-offset: 2px;
}

/* HIGH CONTRAST TEXT FOR TESTIMONIALS */
.testimonial-card p, .testimonial-card .testimonial-name {
  color: #00245A;
  background: none;
}

@media (max-width: 520px) {
  .hero h1 { font-size: 1.08rem; }
  .cta-btn { font-size: 1rem; padding: 11px 16px; }
  .footer-nav { gap: 11px; }
  .cookie-modal-content { padding: 17px 3vw 14px 3vw; }
  .container { padding: 0 4px; }
}

/* END BlitzBoten Vibrant Energetic Design */