/* 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,
main, 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;
}
footer span {
  color: white;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F4F4;
  color: #21436E;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* FONT IMPORT & BASE TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #21436E;
  background: #F4F4F4;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
p, li, span, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #21436E;
}
strong {
  font-weight: bold;
}

/* STRUCTURED CONTAINER & SECTIONS */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px 0 rgba(20, 43, 94, 0.04), 0 1.5px 4px 0 rgba(33, 67, 110, 0.06);
}

main > section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.features-icons {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.features-icons span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  color: #21436E;
}
.features-icons img {
  width: 32px;
  height: 32px;
}

/* FLEXBOX CARD/GRID SECTIONS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(33, 67, 110, 0.08);
  padding: 28px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2.5px solid #F5B841;
  transition: box-shadow 0.25s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(33,67,110,0.15);
  border-color: #21436E;
}

.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: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.cta-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px 0 rgba(33, 67, 110, 0.06);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 240px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px 0 rgba(33,67,110,0.13);
  border-top: 6px solid #F5B841;
  border-left: 6px solid #F5B841;
  max-width: 550px;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #1A2940;
}
.testimonial-card span {
  font-size: 1rem;
  color: #21436E;
  font-weight: 500;
}

/* TABLES (PRICELIST) */
table {
  width: 100%;
  background: #fff;
  border: 2px solid #F5B841;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 22px;
}
thead tr {
  background: #F5B841;
}
th, td {
  padding: 14px 20px;
  text-align: left;
}
th {
  font-weight: 700;
  font-size: 1.1rem;
}
tbody tr:nth-child(even) {
  background: #F4F4F4;
}
tbody tr:nth-child(odd) {
  background: #fff;
}

.note {
  font-size: 0.95rem;
  color: #4A6180;
  margin-top: 10px;
  margin-bottom: 0;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(33,67,110,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 18px;
}
header img {
  max-height: 40px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #21436E;
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
nav a::after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0%;
  background: #F5B841;
  border-radius: 2px;
  transition: width 0.18s cubic-bezier(.4, .7, .6, 1.2);
  position: absolute;
  bottom: -3px;
  left: 0;
}
nav a:hover, nav a:focus {
  color: #F5B841;
}
nav a:hover::after, nav a:focus::after {
  width: 80%;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #F5B841;
  color: #21436E;
  border: none;
  border-radius: 32px;
  padding: 11px 28px;
  font-size: 1.06rem;
  margin-left: 14px;
  box-shadow: 0 2px 10px 0 rgba(245,184,65,0.19);
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  text-transform: uppercase;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #21436E;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(33,67,110,0.18);
}

.mobile-menu-toggle {
  background: #F5B841;
  color: #21436E;
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 7px 0 rgba(245,184,65,0.14);
  transition: background 0.2s, color 0.2s;
  z-index: 1201;
}

.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #21436E;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,67,110,0.97);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.6,1.2,.4,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 28px 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: #F5B841;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 22px 6px 22px;
  align-self: flex-end;
  box-shadow: 0 2px 7px 0 rgba(245,184,65,0.20);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #21436E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
  align-items: flex-start;
  padding: 6px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 2px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5B841;
  color: #21436E;
}

/* FOOTER */
footer {
  background: #21436E;
  color: #fff;
  padding: 50px 0 18px 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.footer-menu a {
  color: #F5B841;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  text-transform: uppercase;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #F5B841;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #fff;
  font-weight: bold;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #21436E;
  color: #fff;
  padding: 22px 20px;
  z-index: 2000;
  box-shadow: 0 -4px 30px 0 rgba(33,67,110,0.10);
  font-size: 1rem;
  gap: 22px;
  min-height: 70px;
  animation: fadeInUp 0.6s;
}

@keyframes fadeInUp {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #F5B841;
  color: #21436E;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  min-width: 120px;
  text-transform: uppercase;
}
.cookie-btn.settings {
  background: #fff;
  color: #21436E;
  border: 2px solid #F5B841;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #21436E;
  color: #fff;
  border-color: #fff;
}

/* COOKIE MODAL (PREFERENCES) */
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33,67,110,0.88);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.35s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
#cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 410px;
  width: 100%;
  box-shadow: 0 8px 40px 0 rgba(33,67,110,0.23);
  padding: 28px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popIn 0.38s;
}
@keyframes popIn {
  from { transform: scale(0.86); opacity:0; } to { transform: scale(1); opacity: 1; }
}
#cookie-modal h3 {
  color: #21436E;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #F4F4F4;
  border-radius: 12px;
  padding: 12px 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F5B841;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #21436E;
  font-size: 1rem;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 16px;
}
#cookie-modal-close {
  background: #F5B841;
  color: #21436E;
  font-size: 1.3rem;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 10;
  transition: background 0.18s, color 0.18s;
}
#cookie-modal-close:hover {
  background: #21436E;
  color: #fff;
}

/* RESPONSIVE DESIGN – MOBILE FIRST */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  main > section {
    padding: 24px 0;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  body { font-size: 15px; }
  header .container { flex-direction: row; gap: 12px; padding: 15px 8px; }
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-menu { flex-direction: column; gap: 10px; }
  .footer-contact { font-size: 0.92rem; }
  .section { margin-bottom: 36px; padding: 18px 5px; }
  main > section { margin-bottom: 38px; padding: 18px 0; }
  .content-wrapper { gap: 10px; }
  .card-container { gap: 15px; }
  .card { min-width: 140px; padding: 18px 10px; }
  .feature-item { min-width: 130px; padding: 12px 8px; }
  .testimonial-card { padding: 14px; border-radius: 10px; }
  .features-icons { gap: 12px; }
  .features-icons img { width: 24px; height: 24px; }
  .cta-button { font-size: 0.96rem; padding: 9px 18px; margin-left: 10px; }
  .text-image-section, .content-grid { flex-direction: column; gap: 16px; }
  .cookie-buttons { flex-direction: column; gap: 10px; align-items: flex-end; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  main > section { margin-bottom: 19px; padding: 9px 0; }
  .container { padding-left: 2.5vw; padding-right: 2.5vw; }
  #cookie-banner { flex-direction: column; gap: 10px; font-size: 0.97rem; padding: 14px 10px 10px 10px; min-height: 0; }
}

/* GEOMETRIC/STRUCTURED EXTRAS */
.section, .content-wrapper, .card, .testimonial-card, .feature-item {
  /* Subtle geometric background accent */
  position: relative;
}
.section::after, .card::after, .testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #F4F4F4;
  border-radius: 9px 24px 22px 0;
  opacity: 0.20;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card::after {
  width: 28px;
  height: 28px;
  right: 7px;
  bottom: 7px;
  background: #F5B841;
  border-radius: 10px 10px 16px 0;
  opacity: 0.15;
}
.card::after {
  background: #21436E;
  opacity: 0.10;
  border-radius: 16px 0 24px 8px;
}

/* ANIMATIONS AND MICRO-INTERACTIONS */
.cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, #cookie-modal-close {
  transition: background 0.19s, color 0.19s, box-shadow 0.21s;
}

.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.22s, border-color 0.18s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 12px 38px 0 rgba(33,67,110,0.11);
  border-color: #21436E;
}

/* GENERAL HELPER CLASSES */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* OVERRIDES: Ensure content never overlaps or is too tight */
.section, .card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.content-grid, .card-container, .features-icons, .footer-menu, .mobile-nav, .cookie-buttons {
  gap: 20px;
}

/* Utility: Make sure nothing overlaps (spacer for cookie banner if needed) */
body.banner-active {
  padding-bottom: 92px !important;
}

/* (END OF CSS) */