/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #14213D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
a {
  color: #14213D;
  text-decoration: none;
  transition: color .2s, background .2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* TYPOGRAPHY -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #14213D;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #14213D;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}
blockquote {
  border-left: 5px solid #FCA311;
  padding-left: 20px;
  font-style: italic;
  font-size: 1.15rem;
  color: #14213D;
}

/* CONTAINER, SECTIONS & LAYOUTS (MOBILE FIRST!) ---------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .section {
    padding: 56px 40px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(20,33,61,.09);
  position: relative;
  transition: box-shadow .18s, transform .2s;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 28px 24px;
  border: 2px solid #E5E5E5;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(252,163,17,.17);
  transform: translateY(-5px) scale(1.015);
  border-color: #FCA311;
}

.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: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px 0 rgba(20,33,61,.10);
  border-left: 7px solid #FCA311;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
  max-width: 700px;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(20,33,61,.21);
  transform: translateY(-4px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px 18px 20px;
  box-shadow: 0 2px 10px 0 rgba(252,163,17,.05);
  margin-bottom: 20px;
}

/* LISTS IN SECTIONS ------------------------------------------- */
ul > li, ol > li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(20,33,61,0.03);
  padding: 16px 16px 16px 0;
  min-height: 80px;
}
ul > li img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: 12px;
  margin-right: 6px;
  background: #FCA31113;
  border-radius: 12px;
  display: block;
  padding: 9px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  ul > li, ol > li {
    flex-direction: column;
    gap: 10px;
    padding-left: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* BUTTONS & LINKS --------------------------------------------- */
.btn-primary, a.btn-primary, button.btn-primary {
  appearance: none;
  background: #FCA311;
  color: #14213D;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 30px;
  padding: 12px 36px;
  border: none;
  transition: background .19s, color .18s, box-shadow .18s, transform .18s;
  box-shadow: 0 3px 10px 0 rgba(252,163,17,0.07);
  outline: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.btn-primary:hover, a.btn-primary:hover, button.btn-primary:hover {
  background: #FFBE3B;
  color: #14213D;
  box-shadow: 0 7px 24px 0 rgba(252,163,17,0.21);
  transform: translateY(-2px) scale(1.05);
}
.btn-primary:active {
  background: #F28500;
  color: #fff;
}

.footer-nav a, .main-nav a, .mobile-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: #14213D;
  transition: background .17s, color .17s;
}
.footer-nav a:hover, .main-nav a:hover, .mobile-nav a:hover {
  background: #FCA311;
  color: #fff;
}
footer .footer-nav a {
  color: #14213D;
}

/* HEADER, NAVIGATION & LOGO ------------------------------------ */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #E5E5E5;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 800;
  display: flex;
  flex-direction: column;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  margin: 14px 0 14px 10px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 3px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU ------------------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCA311;
  color: #14213D;
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 10px;
  margin: 16px 12px 16px 16px;
  z-index: 1111;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .18s;
}
.mobile-menu-toggle:hover {
  background: #FFBE3B;
  color: #14213D;
  box-shadow: 0 4px 12px 0 rgba(252,163,17,0.15);
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,33,61,0.92);
  box-shadow: 0 10px 60px 0 rgba(20,33,61,0.36);
  z-index: 2000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .31s cubic-bezier(.51,.11,.19,1.03);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  color: #14213D;
  font-size: 2.3rem;
  border-radius: 50%;
  border: none;
  margin: 22px 24px 0 0;
  padding: 2px 16px 2px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: background .15s, color .15s;
  z-index: 2001;
  box-shadow: 0 2px 10px 0 rgba(20,33,61,.18);
}
.mobile-menu-close:hover {
  background: #FCA311;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 30px;
  padding: 0 32px 40px 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(252,163,17,.04);
  width: 100%;
  border-radius: 10px;
  padding: 13px 10px 13px 18px;
  transition: background .19s, color .16s;
}
.mobile-nav a:hover {
  background: #FCA311;
  color: #14213D;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* COOKIE CONSENT BANNER ----------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #14213D;
  color: #fff;
  padding: 26px 18px 20px 18px;
  box-shadow: 0 -3px 22px 0 rgba(20,33,61,.29);
  z-index: 9002;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  opacity: 1;
  transition: transform .32s, opacity .28s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  border-radius: 25px;
  padding: 10px 24px;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .18s;
  margin-bottom: 2px;
}
.cookie-banner .accept {
  background: #FCA311;
  color: #14213D;
}
.cookie-banner .accept:hover {
  background: #FFBE3B;
  color: #14213D;
}
.cookie-banner .reject {
  background: #fff;
  color: #14213D;
  border: 2px solid #FCA311;
}
.cookie-banner .reject:hover {
  background: #FCA311;
  color: #fff;
}
.cookie-banner .settings {
  background: #14213D;
  color: #fff;
  border: 2px solid #E5E5E5;
}
.cookie-banner .settings:hover {
  background: #fff;
  color: #14213D;
  border: 2px solid #14213D;
}

/* COOKIE MODAL ----------------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 9005;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,33,61,.90);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .24s;
  visibility: hidden;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #fff;
  color: #14213D;
  border-radius: 16px;
  padding: 36px 22px 26px 22px;
  min-width: 280px;
  max-width: 370px;
  box-shadow: 0 8px 44px 0 rgba(20,33,61,0.30);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  align-items: stretch;
}
.cookie-modal-content h2 {
  font-size: 1.36rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #FCA311;
  margin-bottom: 14px;
}
.cookie-modal-close {
  background: none;
  color: #FCA311;
  border: none;
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 2rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover {
  color: #14213D;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #E5E5E5;
  border-radius: 8px;
  padding: 11px 16px;
  margin-bottom: 7px;
}
.cookie-category span {
  font-weight: 600;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-toggle {
  width: 45px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FCA311;
  border-radius: 14px;
  transition: .26s;
}
.cookie-toggle input:checked + .toggle-slider {
  background: #14213D;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .24s;
}
.cookie-toggle input:checked + .toggle-slider:before {
  transform: translateX(23px);
}

/* MAIN & HEROES --------------------------------------------- */
main {
  width: 100%;
  margin: 0;
  padding: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 30px 0 rgba(20,33,61,.06);
}
@media (min-width: 1024px) {
  section {
    padding: 54px 38px 54px 38px;
    margin-bottom: 74px;
  }
}

/* CARDS, TESTIMONIALS, FEATURES ------------------------------ */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* FORM, CONTACT & CONFIRMATION ----------------------------------- */
.confirmation-message {
  font-size: 1.8rem;
  color: #14213D;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  margin: 24px 0 24px 0;
  text-align: center;
}

/* FOOTER ----------------------------------------------------- */
footer {
  width: 100%;
  background: #14213D;
  color: #fff;
  border-top: 2px solid #FCA311;
}
footer .container {
  flex-direction: column;
  align-items: center;
  padding: 26px 12px 17px 12px;
  gap: 13px;
}
.footer-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  background: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  transition: background .17s, color .17s;
}
.footer-nav a:hover {
  background: #FCA311;
  color: #14213D;
}
.footer-info {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .footer-info a {
  color: #FCA311;
  border-bottom: 1px dotted #FCA311;
  font-weight: 500;
  transition: color .17s;
}
footer .footer-info a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* HIGH CONTRAST & ACCESSIBILITY ----------------------------- */
@media (prefers-color-scheme: dark) {
  body, section, .card, .feature-item, .testimonial-card, .cookie-modal-content {
    background: #fff;
    color: #14213D;
  }
}

/* MEDIA QUERIES (RESPONSIVE) ----------------------------------- */
@media (max-width: 768px) {
  .container, footer .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .section, section {
    padding: 24px 8px;
    margin-bottom: 42px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 470px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .main-nav a, .footer-nav a { font-size: .97rem; }
  .logo img { height: 34px; }
  .btn-primary { font-size: .96rem; padding: 10px 18px; }
}

/* GEOMETRIC BOLD DESIGN (Modern Bold) VISUALS ------------------ */
.card, .testimonial-card, .feature-item, section, .cookie-modal-content {
  border-radius: 18px;
}
.card, section, .feature-item {
  box-shadow: 0 2px 18px 0 rgba(20,33,61,0.07);
}

/* MICRO-INTERACTIONS (HOVERS/CLICK) -------------------------- */
a, .btn-primary, .feature-item, .card, .testimonial-card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color .16s, background .17s, box-shadow .19s, transform .17s;
}

/* VISUAL HIERARCHY BOLD -------------------------------------- */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: .03em;
}

.btn-primary {
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* UTILITY & HELPERS ------------------------------------------ */
.mt-20   { margin-top: 20px !important; }
.mb-20   { margin-bottom: 20px !important; }
.gap-20  { gap: 20px !important; }

/* Hide elements visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Scrollbar styling ------------------------------------------ */
::-webkit-scrollbar {
  width: 8px;
  background: #FCA31130;
}
::-webkit-scrollbar-thumb {
  background: #FCA311;
  border-radius: 6px;
}
