/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #fff;
  color: #142132;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #152c4a;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #ffb400;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(21,44,74,0.06);
  overflow: hidden;
}
thead {
  background: #e5eaf1;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #e5eaf1;
}
th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #152c4a;
  text-transform: uppercase;
}
tr:last-child td {
  border-bottom: none;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #152c4a;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 24px;
  text-shadow: 0 4px 18px rgba(21,44,74,0.07);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.22;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, .text-section p {
  font-size: 1.05rem;
  color: #212d3d;
  margin-bottom: 18px;
  font-weight: 500;
}
strong {
  font-weight: 700;
  color: #152c4a;
}

/* CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  padding: 0 20px;
  margin-bottom: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(21,44,74,0.06);
}

.feature-grid,
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card,
.feature-grid > div,
.card-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(21,44,74,0.10);
  padding: 28px 22px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 240px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 220px;
  min-height: 210px;
}
.card:hover,
.feature-grid > div:hover,
.card-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(255,180,0,0.15);
  transform: translateY(-2px) scale(1.025);
  z-index: 1;
}

/* FLEXBOX ALIGNMENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
  background: #e5eaf1;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(21,44,74,0.11);
  margin-bottom: 20px;
  margin-top: 0;
  position: relative;
  flex-direction: row;
  min-width: 240px;
}
.testimonial-card p {
  color: #152c4a;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #363e4c;
  margin-left: auto;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.text-section {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CTAs */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffb400;
  color: #152c4a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 1.18rem;
  padding: 16px 32px;
  border: none;
  border-radius: 32px;
  margin-top: 12px;
  box-shadow: 0 2px 8px 0 rgba(255,180,0,0.20);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, color 0.19s, transform 0.14s;
  min-width: 160px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #152c4a;
  color: #ffb400;
  box-shadow: 0 6px 24px 0 rgba(21,44,74,0.16);
  transform: translateY(-2px) scale(1.05);
  outline: none;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 16px 22px;
  border-bottom: 2px solid #e5eaf1;
  position: relative;
  z-index: 20;
}
header > a > img {
  height: 54px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  color: #152c4a;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.19s, color 0.13s;
}
header nav a:hover,
header nav a:focus {
  background: #e5eaf1;
  color: #ffb400;
}
header .cta-primary {
  margin-left: 24px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #152c4a;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
  margin-left: 20px;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffb400;
  color: #152c4a;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #152c4a;
  padding: 36px 26px 22px 26px;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.76,0.03,0.12,1.01);
  box-shadow: 12px 0 38px 0 rgba(21,44,74,0.25);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #ffb400;
  color: #152c4a;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 6px 14px 4px 14px;
  align-self: flex-end;
  margin-bottom: 30px;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #fff;
  color: #152c4a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 16px 6px;
  border-radius: 11px;
  transition: background 0.18s, color 0.15s, transform 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ffb400;
  color: #152c4a;
  transform: translateX(5px);
}

@media (max-width: 1060px) {
  .container { max-width: 96vw; }
  header, main, footer { padding-left: 0; padding-right: 0; }
}
@media (max-width: 900px) {
  nav, header nav {
    gap: 11px;
  }
  header .cta-primary {
    margin-left: 10px;
    min-width: 110px;
    font-size: 0.98rem;
    padding: 11px 15px;
  }
  h1 { font-size: 2.01rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 32px 4vw; }
}
@media (max-width: 770px) {
  .feature-grid, .card-container, .card-grid, .content-grid {
    gap: 16px;
  }
  .card, .feature-grid > div, .card-grid > div {
    padding: 18px 9px 18px 12px;
  }
}
@media (max-width: 770px) {
  body { font-size: 0.98rem; }
  header {
    flex-wrap: wrap;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 770px) {
  .feature-grid, .card-container, .card-grid, .content-grid, .testimonial-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 630px) {
  .container, .section, .content-wrapper {
    padding-left: 4vw; padding-right: 4vw;
  }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  p, .text-section p { font-size: 1rem; }
  .cta-primary { padding: 12px 10px; font-size: 1rem; }
}

/* FOOTER */
footer {
  background: #152c4a;
  color: #fff;
  padding: 42px 20px 30px 20px;
  text-align: center;
  margin-top: 42px;
  border-radius: 21px 21px 0 0;
  box-shadow: 0 -2px 18px rgba(21,44,74,0.08);
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.8px;
  border-radius: 8px;
  padding: 6px 8px;
  transition: background 0.13s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #ffb400;
  color: #152c4a;
}
.footer-contact {
  margin: 9px 0 12px 0;
  color: #e5eaf1;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
footer small {
  display: block;
  margin-top: 6px;
  color: #e5eaf1;
  opacity: 0.82;
}

/* LISTS WITH ICONS (about & kontakt) */
.contact-list li, .feature-grid li, .text-section li, ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 7px 0 7px 0;
}
.contact-list img, .feature-grid img, ul img, li img {
  width: 30px;
  height: 30px;
  min-width: 22px;
  min-height: 22px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-list > div {
  flex: 1 1 320px;
  min-width: 200px;
  background: #f6f8fa;
  border-radius: 14px;
  box-shadow: 0 1px 4px 0 rgba(21,44,74,0.05);
  padding: 16px 18px;
  margin-bottom: 20px;
}
.faq-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #152c4a;
  margin-bottom: 11px;
  letter-spacing: 0.7px;
}
.faq-list p { font-size: 1rem; font-weight: 500; margin-bottom: 0; }

/* OL STYLES inside text-section */
.text-section ol {
  counter-reset: num;
  padding-left: 18px;
  margin-bottom: 10px;
}
.text-section ol li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-weight: 600;
}
.text-section ol li strong { color: #ffb400; }
.text-section ol li:before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #ffb400;
  font-size: 1.18rem;
}

/* FORMS */
input, select, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 11px 14px;
  border: 1.5px solid #e5eaf1;
  border-radius: 11px;
  font-size: 1rem;
  transition: border 0.13s, box-shadow 0.12s;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px 0 rgba(21,44,74,0.05);
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid #ffb400;
  outline: none;
}
label {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #152c4a;
  margin-bottom: 6px;
}

button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.19s, color 0.14s, box-shadow 0.19s;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #152c4a;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  padding: 20px 30px;
  box-shadow: 0 -4px 36px 0 rgba(21,44,74,0.28);
  animation: slideUpBanner 0.55s cubic-bezier(0.77,0,0.18,1);
}
@keyframes slideUpBanner {
  0% { transform: translateY(100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner__text {
  flex: 1 1 210px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #fff;
}
.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: 21px;
  padding: 10px 26px;
  font-size: 1.04rem;
  letter-spacing: 1.1px;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.19s, box-shadow 0.13s;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(21,44,74,0.07);
  cursor: pointer;
}
.cookie-btn.accept {
  background: #ffb400;
  color: #152c4a;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #152c4a;
  box-shadow: 0 4px 12px 0 rgba(255,180,0,0.13);
}
.cookie-btn.reject {
  background: #fff;
  color: #152c4a;
  border: 2px solid #ffb400;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffb400;
  color: #152c4a;
  border-color: #152c4a;
}
.cookie-btn.settings {
  background: transparent;
  border: 2px solid #e5eaf1;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e5eaf1;
  color: #152c4a;
  border-color: #ffb400;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(21,44,74,0.82);
  z-index: 11111;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.7,0.1,0.22,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__content {
  background: #fff;
  color: #152c4a;
  border-radius: 24px;
  padding: 34px 20px 24px 30px;
  min-width: 330px; max-width: 96vw;
  box-shadow: 0 4px 32px 0 rgba(21,44,74,0.14);
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modalSlideIn 0.36s cubic-bezier(0.7,0.1,0.23,1);
}
@keyframes modalSlideIn {
  0% { transform: translateY(30px) scale(0.94); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal__header h2 {
  margin: 0; font-size: 1.25rem;
}
.cookie-modal__close {
  background: #ffb400;
  color: #152c4a;
  border-radius: 8px;
  border: none;
  font-size: 1.7rem;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #152c4a;
  color: #ffb400;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #ffb400;
  width: 23px; height: 23px;
}
.cookie-category.essential label {
  color: #aaa;
}

/* MODERN BOLD DECORATIVE SHAPES */
.section:before {
  content: '';
  display: none; /* Decorative shapes can be enabled if needed */
}

/* TRANSITIONS and MICRO-INTERACTIONS */
.card, .feature-grid > div, .card-grid > div,
.cta-primary, .cookie-btn, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close,
footer nav a, header nav a, .faq-list > div {
  transition: box-shadow 0.2s, background 0.18s, color 0.15s, transform 0.14s;
}
input, textarea, select { transition: border 0.18s, box-shadow 0.13s; }

/* SCROLLBAR STYLES */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #e5eaf1;
  border-radius: 11px;
}
body::-webkit-scrollbar-track { background: #fff; }

/* MISC */
::-moz-selection { background: #ffb400; color: #152c4a; }
::selection { background: #ffb400; color: #152c4a; }

/* Hide number spinner arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* Utility */
.mt-2 { margin-top: 12px; }
.mb-3 { margin-bottom: 20px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* END */
