/* ------------------- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F8F8F8;
  color: #232835;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #003366;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD700;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --------------- BRAND TYPOGRAPHY ------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  color: #003366;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.3; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
.lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #232835;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 800;
  color: #003366;
}

/* -------------- CONTAINER / LAYOUT ---------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(0,10,36,0.06);
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ------------- HEADER & NAVIGATION -------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 20px 0;
  background: #F8F8F8;
  position: relative;
  z-index: 101;
}
header > a img {
  height: 52px;
  width: auto;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
  padding: 8px 8px;
  border-radius: 6px;
}
header nav a:hover, header nav a.active {
  color: #FFD700;
  background: #00336612;
}
.button-primary {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  background: #FFD700;
  color: #003366;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  margin-left: 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,20,60,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.15s;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: #003366;
  color: #FFD700;
  box-shadow: 0 6px 18px rgba(0,20,80,0.10);
}

/* ------------ MOBILE NAVIGATION/HAMBURGER --------- */
.mobile-menu-toggle {
  display: none;
  background: #003366;
  color: #FFD700;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 8px 16px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: none;
  background: #FFD700;
  color: #003366;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #003366;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.8,.2,.3,1);
  z-index: 1250;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 24px 32px;
  box-shadow: -2px 0 32px rgba(0,0,20,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFD700;
  font-size: 2.25rem;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 26px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFD700;
  padding: 12px 0;
  border-radius: 8px;
  text-align: left;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #003366;
  background: #FFD700;
}

/* Hide desktop nav/menu on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .button-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 16px 0 10px 0;
  }
  .mobile-menu-toggle {
    top: 13px;
    right: 13px;
  }
}

/* --------------- FLEXBOX CONTENT GRIDS ------------- */
.feature-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 238px;
  min-width: 220px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(0,0,60,0.06);
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-height: 265px;
  position: relative;
  text-align: left;
  border: 2px solid #00336617;
  transition: border 0.18s, box-shadow 0.17s, transform 0.18s;
}
.feature:hover {
  border-color: #FFD700;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 24px rgba(255,215,0,0.09);
}
.feature img {
  height: 50px; width: 50px; margin-bottom: 8px;
}
.feature h3 {
  color: #003366;
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 800;
}

/* --------------- TESTIMONIAL CARDS ------------------ */
.testimonial-card {
  background: #F8F8F8;
  color: #232835;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0,27,60,0.06);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  border-left: 6px solid #FFD700;
  min-width: 0;
  font-size: 1.08rem;
  z-index: 10;
}
.testimonial-card blockquote {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: #003366;
  quotes: "\201E" "\201C";
  line-height: 1.5;
}
.testimonial-card blockquote:before {
  content: '\201C';
  color: #FFD700;
  font-size: 2.2rem;
  vertical-align: top;
  line-height: 1;
  margin-right: 6px;
}
.testimonial-card p {
  margin: 0 0 0 16px;
  color: #232835;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #003366;
}

/* -------------- CARDS - GENERIC ---------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0,0,60,0.05);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #00336614;
  min-width: 0;
  transition: border 0.18s, box-shadow 0.18s;
}
.card:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 22px 0px rgba(255,215,0,0.08);
  z-index: 5;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------- SECTION SPACING -------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

@media (max-width: 992px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  section {
    padding: 28px 0;
  }
  .container {
    padding: 0 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.07rem; }
}

/* -------------- BUTTONS & CTAs ------------------- */
.button-primary:active {
  background: #FFD700;
  color: #001a33;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.button-primary:disabled {
  background: #d2b800;
  color: #AAA;
  opacity: 0.6;
  cursor: not-allowed;
}

/* ----------- FOOTER ------------------------------- */
footer {
  background: #003366;
  color: #F8F8F8;
  padding: 38px 0 34px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  margin-top: 38px;
  border-top: 6px solid #FFD700;
}
footer nav {
  display: flex;
  gap: 28px;
  margin-bottom: 16px;
}
footer nav a {
  color: #FFD700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.19s;
}
footer nav a:hover {
  color: #FFF;
  text-decoration: underline;
}
footer address {
  color: #FFF;
  font-style: normal;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.6;
  align-items: flex-start;
  margin-top: 6px;
}
footer address img {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  height: 18px;
  width: 18px;
}
@media (max-width: 640px) {
  footer {
    padding: 28px 0 18px 0;
  }
  footer nav {
    gap: 17px;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer address {
    font-size: 0.96rem;
  }
}

/* --------------- COOKIE BANNER & MODAL ----------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #003366;
  color: #FFD700;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 22px;
  z-index: 30000;
  box-shadow: 0 -8px 32px rgba(0,24,30,0.18);
  transition: transform 0.36s cubic-bezier(.8,.2,.3,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 3 1 0px;
  font-size: 1rem;
  margin-right: 14px;
}
.cookie-banner__controls {
  flex: 1 1 0px;
  display: flex;
  flex-direction: row;
  gap: 10px; 
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
  margin-left: 2px;
}
.cookie-btn.accept {
  background: #FFD700;
  color: #003366;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFF;
  color: #003366;
}
.cookie-btn.reject {
  background: #FFF;
  color: #003366;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD700;
  color: #003366;
}
.cookie-btn.settings {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD700;
  color: #003366;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
    gap: 9px;
  }
  .cookie-banner__controls {
    width: 100%;
    justify-content: flex-start;
  }
}

.cookie-modal {
  position: fixed;
  z-index: 36999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(.5,.5,0,1), visibility 0.18s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal__dialog {
  background: #FFF;
  color: #003366;
  border-radius: 24px;
  max-width: 410px;
  width: 90vw;
  padding: 34px 26px 30px 26px;
  box-shadow: 0 8px 48px rgba(0,36,150, 0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #003366;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #FFD700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid #E8E8E8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  flex: 1 1 auto;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #bbb;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 7px;
}

/* -------------- GEOMETRIC/DECORATIVE SHAPES ----------- */
.geoshape {
  position: absolute;
  pointer-events: none;
}
.geoshape-circle-bold {
  width: 112px; height: 112px;
  border-radius: 999px;
  background: #FFD70044;
  top: -32px; right: -42px;
  z-index: 0;
}
.geoshape-bar {
  width: 60px; height: 16px;
  border-radius: 8px;
  background: #00336677;
  position: absolute;
  bottom: -14px; left: -18px;
  z-index: 0;
}

/* --------------- MISCELLANEOUS ---------------------- */
::-webkit-scrollbar {
  width: 10px; background: #F8F8F8;
}
::-webkit-scrollbar-thumb {
  background: #00336644;
  border-radius: 10px;
}

/* ----- Responsive typography adjustments ----- */
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.07rem; }
  .lead { font-size: 1rem; }
}

/* Consistent bottom margin for contained sections */
.container + .container {
  margin-top: 32px;
}

/***** END OF STYLE.CSS *****/
