/* CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  background: #F4F4F0;
  color: #203260;
  line-height: 1.55;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #203260;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #EBC72F;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #203260;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADINGS (Geometric Font + Angular Spacing) */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 18px;
  color: #203260;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 22px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* SECTIONS & LAYOUT */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* CARD & FEATURE GRIDS */
.card-container, .card-grid, .service-list { /* For product/service cards */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.card, .service-list > div {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(32,50,96,0.07);
  border-radius: 14px;
  border: 1.5px solid #EBC72F;
  padding: 28px 24px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover, .service-list > div:hover {
  box-shadow: 0 8px 24px 0 rgba(32,50,96,0.16);
  border-color: #203260;
  z-index: 3;
}
.feature-item, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TESTIMONIAL */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #203260;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px 0 rgba(45,55,91,0.12);
  padding: 24px 32px 18px 32px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  max-width: 570px;
  min-width: 220px;
  margin-left: auto; margin-right: auto;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #203260;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #203260;
}
.testimonial-card span {
  font-size: 1rem;
  color: #203260;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(32,50,96,0.14);
  background: #F4F4F0;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 2em;
  border-radius: 9px;
  text-transform: uppercase;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  border: 2px solid #203260;
  background: #EBC72F;
  color: #203260;
  box-shadow: 0 2px 6px 0 rgba(32,50,96,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.22s, transform 0.16s cubic-bezier(.4,0,1,1);
  margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #203260;
  color: #fff;
  border-color: #EBC72F;
  transform: translateY(-2px) scale(1.03) skew(-2deg,0);
}
.btn-secondary {
  background: #203260;
  color: #fff;
  border: 2px solid #EBC72F;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #EBC72F;
  color: #203260;
}

/* HEADER */
header {
  width: 100%;
  background: #ffffff;
  border-bottom: 3.5px solid #EBC72F;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  padding: 7px 0px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #EBC72F;
  border-bottom: 2px solid #EBC72F;
}
.btn-primary {
  margin-left: 18px;
}

/* MOBILE HEADER/BURGER */
.mobile-menu-toggle {
  display: none;
  background: #EBC72F;
  border: none;
  font-size: 2.2rem;
  color: #203260;
  padding: 8px 16px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 201;
  position: absolute;
  right: 20px;
  top: 16px;
  box-shadow: 0 2px 8px 0 rgba(32,50,96,0.13);
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #203260;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F4F0;
  box-shadow: 0 6px 20px 0 rgba(32,50,96,0.16);
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.6,.4,0,1);
  padding: 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #203260;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  cursor: pointer;
  z-index: 202;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #EBC72F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: #203260;
  padding: 10px 0;
  width: 100%;
  transition: background 0.12s, color 0.18s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EBC72F;
  color: #203260;
  text-decoration: none;
}
/* HIDE desktop nav on mobile, show burger */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & TYPO */
p, ul, ol, li {
  font-family: 'Lato', Arial, sans-serif;
  color: #203260;
  font-size: 1.1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 13px;
}
.content-short-info, .contact-short-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: none;
  font-size: 1rem;
}
.contact-short-info img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/* FEATURE LISTS (Structured+Geometric) */
section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
section ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 10px;
  border-left: 6px solid #EBC72F;
  box-shadow: 0 2px 8px 0 rgba(32,50,96,0.07);
  font-size: 1.07rem;
}
section ul li img {
  width: 32px;
  height: 32px;
}
section ul li strong {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.07rem;
}

/* FOOTER */
footer {
  background: #203260;
  color: #fff;
  border-top: 3.5px solid #EBC72F;
  padding: 38px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
footer .footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-nav a {
  color: #fff;
  border-bottom: 2px solid transparent;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 4px 0;
  transition: border-color 0.2s, color 0.20s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 2px solid #EBC72F;
  color: #EBC72F;
}
footer .contact-short-info {
  color: #fff;
  gap: 9px;
  font-size: 1rem;
}
footer .contact-short-info img {
  filter: grayscale(1) brightness(3);
  width: 19px; height: 19px;
}
.legal-notices {
  color: #fff;
  opacity: 0.85;
  font-size: 0.96rem;
  margin-top: 6px;
  font-family: 'Lato', Arial, sans-serif;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 940px) {
  .container {
    max-width: 95vw;
  }
  footer .container, .brand-footer, .content-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  nav, .footer-nav {
    gap: 16px !important;
  }
  .section, section {
    padding: 23px 6px;
    margin-bottom: 35px;
  }
  .content-wrapper, .service-list, .card-container {
    gap: 13px;
  }
  .testimonial-card {
    padding: 14px 12px 12px 12px;
  }
  .text-image-section, .content-grid, .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .brand-footer, .footer-nav, .contact-short-info {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
}

/* ANIMATIONS & MICROINTERACTIONS */
.btn-primary, .btn-secondary, .testimonial-card, .card, .service-list > div {
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, border-color 0.15s, transform 0.19s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98) skew(-1.5deg,0);
}

/* COOKIE BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  background: #203260;
  color: #fff;
  z-index: 250;
  padding: 18px 12px 12px 12px;
  box-shadow: 0 -2px 16px 0 rgba(32,50,96,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  animation: bannerFadeIn 0.48s cubic-bezier(.35,0,.2,1);
}
@keyframes bannerFadeIn {
  from { transform: translateY(70px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-consent-buttons {
  display: flex;
  gap: 16px;
  margin-top: 9px;
}
.cookie-consent-banner .btn-primary, .cookie-consent-banner .btn-secondary {
  font-size: 1rem;
  padding: 0.4em 1.7em;
  margin: 0;
}
.cookie-consent-banner .btn-secondary {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}
.cookie-consent-banner .btn-secondary:hover {
  background: #EBC72F;
  color: #203260;
  border-color: #EBC72F;
}
/
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,50,96, 0.88);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #203260;
  border-radius: 15px;
  box-shadow: 0 3.5px 20px 0 rgba(32,50,96,0.27);
  padding: 38px 28px 24px 28px;
  max-width: 410px;
  width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1rem;
  animation: cookieIn 0.29s cubic-bezier(.6,.3,0,1);
}
@keyframes cookieIn {
  from { transform: translateY(70px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #203260;
  cursor: pointer;
  z-index: 301;
}
.cookie-modal-close:hover {
  color: #EBC72F;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F4F0;
  font-size: 1rem;
  border-radius: 7px;
  padding: 7px 14px;
}
.cookie-category label {
  font-weight: 600;
  color: #203260;
}
.cookie-category-toggle {
  width: 38px;
  height: 22px;
  border-radius: 30px;
  background: #EBC72F;
  border: 2px solid #203260;
  position: relative;
  transition: background .15s;
  cursor: pointer;
  margin-left: 14px;
  flex-shrink: 0;
}
.cookie-category-toggle[aria-checked="false"] {
  background: #fff;
  border: 2px solid #EBC72F;
}
.cookie-category-toggle:after {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  background: #203260;
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-category-toggle[aria-checked="true"]:after {
  left: 18px;
  background: #EBC72F;
}
.cookie-category[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  margin-top: 12px;
  font-size: 1rem;
}

/* GEOMETRIC DECOR (Angular Underlines) */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 54px;
  height: 4px;
  background: #EBC72F;
  border-radius: 2px;
  margin-top: 7px;
}

/* Card geometric highlight */
.card:before, .service-list > div:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: #EBC72F;
  position: absolute;
  top: -14px; left: 24px;
  border-radius: 4px 4px 1.5px 1.5px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
/* Hide for mobile, to avoid layout issues */
@media (max-width: 570px) {
  .card:before, .service-list > div:before {
    display: none;
  }
}

/* ACCESSIBILITY FOCUSES */
a:focus, .btn-primary:focus, .btn-secondary:focus, button:focus {
  outline: 2.5px solid #203260;
  outline-offset: 2.5px;
}

/* MISC */
hr {
  border: 0;
  border-top: 1.5px solid #203260;
  margin: 30px 0;
  opacity: 0.12;
}
::-webkit-input-placeholder { color: #203260; opacity: 0.72; }
::-moz-placeholder { color: #203260; opacity: 0.72; }
:-ms-input-placeholder { color: #203260; opacity: 0.72; }
::placeholder { color: #203260; opacity: 0.72; }

/* Hide scrollbars for mobile nav when open */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* Prevent content overlap: enforce min 20px spacing */
.card, .testimonial-card, .service-list > div, .feature-item {
  margin-bottom: 20px;
}
.content-wrapper > *, .section > *, section > * {
  margin-bottom: 20px;
}
.content-wrapper > *:last-child, .section > *:last-child, section > *:last-child {
  margin-bottom: 0;
}

/* Ensure all .section, .card-container, .card, .content-grid etc. spacing rules as given in style brief are implemented above */
/* END OF CSS */
