/* ====================================================
   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 {
  scroll-behavior: smooth;
}
body {
  background: #F4F7FA;
  color: #1a1a1a;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #003366;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E5B100;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-block: 12px;
}
strong {
  font-weight: bold;
}

/* ====================================================
   TYPOGRAPHY - GEOMETRIC STRUCTURED STYLE
==================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat',  Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #003366;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
p {
  color: #222;
  margin-bottom: 14px;
}
.cta-button, .cta-link {
  font-family: 'Montserrat',  Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ====================================================
   MAIN STRUCTURE & LAYOUT
==================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,34,66,0.06);
  padding: 40px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F7FA;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px rgba(0,34,66,0.05);
  position: relative;
    margin-bottom: 20px;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,34,66,.08);
  position: relative;
  padding: 28px 22px;
  min-width: 240px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F7FA;
  border-left: 6px solid #E5B100;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0,34,66,0.09);
  margin-bottom: 24px;
  flex: 1 1 350px;
}
.testimonial-card p {
  color: #1a1a1a;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #003366;
  font-size: 1rem;
  font-weight: bold;
}

/* Section spacing for containers in main body */
main > section {
  margin-bottom: 60px;
  padding: 0;
}


/* ====================================================
   HEADER & NAVIGATION
==================================================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,34,66,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 22px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat',  Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  color: #003366;
  letter-spacing: 0.03em;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: #E5B100;
  color: #003366;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: #E5B100;
  color: #003366;
  padding: 12px 30px;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(229,177,0,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-left: 16px;
  text-decoration: none;
}
.cta-button:hover, .cta-button:focus {
  background: #003366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,51,102,0.13);
}
.cta-link {
  color: #003366;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 12px;
  cursor: pointer;
  transition: color 0.18s;
}
.cta-link:hover, .cta-link:focus {
  color: #E5B100;
  text-decoration: none;
}

/* ====================================================
   MOBILE MENU (BURGER MENU)
==================================================== */
.mobile-menu-toggle {
  display: none;
  background: #003366;
  color: #fff;
  font-size: 1.7rem;
  border: none;
  border-radius: 10px;
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.22s;
  z-index: 1110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E5B100;
  color: #003366;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0 36px 0 rgba(0,51,102,0.26);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  padding-left: 28px;
  padding-right: 48px;
  gap: 32px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 34px;
  background: #E5B100;
  color: #003366;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1210;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #003366;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #003366;
  text-transform: uppercase;
  background: transparent;
  padding: 13px 0;
  border-bottom: 1px solid #F4F7FA;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5B100;
  color: #003366;
  border-radius: 10px;
  padding-left: 10px;
}

@media (max-width: 1020px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====================================================
   MAIN PAGE ELEMENTS - CARDS, TABLES, ETC.
==================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,34,66,0.09);
  margin-bottom: 24px;
}
td, th {
  padding: 18px 24px;
  border-bottom: 1px solid #F4F7FA;
  font-size: 1rem;
  color: #263238;
}
tr:last-child td {
  border-bottom: none;
}

/* Section paddings and lists */
section ul, section ol {
  margin-bottom: 12px;
  margin-top: 0;
  padding-left: 22px;
}
section li {
  padding-left: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ====================================================
   FORMS & INTERACTIVE BUTTONS
==================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  border: 1.5px solid #003366;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  outline: none;
  background: #fafdff;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E5B100;
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 22px;
  background: #003366;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.03em;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,51,102,.07);
  transition: background 0.19s, box-shadow 0.19s;
}
button:hover, .button:hover, button:focus {
  background: #E5B100;
  color: #003366;
  box-shadow: 0 4px 16px rgba(229,177,0,.13);
}

/* ====================================================
   FOOTER
==================================================== */
footer {
  background: #003366;
  color: #fff;
  width: 100%;
  padding: 40px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer img {
  height: 36px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  transition: color .16s;
  background: none;
  padding: 0;
}
footer nav a:hover, footer nav a:focus {
  color: #E5B100;
}
footer ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 4px;
}
footer ul a {
  color: #E5B100;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-decoration: underline;
  transition: color 0.18s;
}
footer ul a:hover, footer ul a:focus {
  color: #fff;
  text-decoration: none;
}
footer address {
  font-style: normal;
  font-size: 0.98rem;
  color: #E5B100;
  margin-top: 12px;
}

/* ====================================================
   COOKIE CONSENT BANNER & MODAL
==================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1450;
  background: #fff;
  color: #003366;
  border-top: 3px solid #E5B100;
  box-shadow: 0 -4px 20px 0 rgba(0,51,102,0.13);
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cookie-banner p {
  margin: 0 12px 0 0;
  font-size: 1rem;
  max-width: 440px;
}
.cookie-banner .cookie-accept, .cookie-banner .cookie-reject, .cookie-banner .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 18px;
  cursor: pointer;
  margin-right: 10px;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-accept {
  background: #003366;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #E5B100;
  color: #003366;
}
.cookie-banner .cookie-reject {
  background: #F4F7FA;
  color: #003366;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #E5B100;
  color: #003366;
}
.cookie-banner .cookie-settings {
  background: #E5B100;
  color: #003366;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #003366;
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1500;
  background: rgba(0,34,66,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 38px 34px 28px 34px;
  max-width: 430px;
  width: 94vw;
  box-shadow: 0 2px 22px 0 rgba(0,51,102,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #003366;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.03rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  background: #F4F7FA;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid #003366;
  flex-shrink: 0;
}
.cookie-modal .cookie-switch input {
  display: none;
}
.cookie-modal .cookie-switch span {
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #E5B100;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-modal .cookie-switch input:checked + span {
  left: 18px;
  background: #003366;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #003366;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F4F7FA;
}

/* ====================================================
    MICRO-INTERACTIONS & GEOMETRIC DECOR
==================================================== */
.card, .testimonial-card, .feature-item, .content-wrapper {
  transition: box-shadow .19s, transform .19s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .content-wrapper:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 6px 28px 0 rgba(0,51,102,0.16);
}

/* Accent geometric shapes for titles */
h1, h2, h3 {
  position: relative;
}
h1::before, h2::before, h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  width: 32px;
  height: 8px;
  background: #E5B100;
  border-radius: 4px;
}
h2::before {
  width: 22px;
  height: 8px;
}
h3::before {
  width: 14px;
  height: 7px;
}

/* ====================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
==================================================== */
@media (max-width: 1020px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    flex-direction: row;
  }
  .content-wrapper {
    padding: 28px 12px;
    border-radius: 15px;
  }
  .section {
    padding: 28px 9px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  header .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 0;
  }
  .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    padding: 16px 2vw;
    border-radius: 11px;
    margin-bottom: 15px;
  }
  .card {
    padding: 18px 8px;
    border-radius: 9px;
    min-width: unset;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 8px;
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 13px 3vw;
    gap: 12px;
  }
}
@media (max-width: 500px) {
  h1, h2, h3, h4, h5 {
    font-size: 1.07rem;
    margin-bottom: 7px;
  }
  .content-wrapper, .card, .testimonial-card {
    padding: 10px 2px;
  }
  .card-container, .card-grid, .content-grid {
    gap: 12px;
  }
}

/* ====================================================
   UTILITY CLASSES & REUSABLE SPACING
==================================================== */
.flex {
  display: flex !important;
}
.flex-center {
  align-items: center !important;
  justify-content: center !important;
}
.flex-col {
  flex-direction: column !important;
}
.gap-16 {
  gap: 16px !important;
}
.gap-20 {
  gap: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

/* ================ END ================ */
