/* CSS RESET & NORMALIZATION */
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, menu, 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;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f1f1f1;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232B3E;
  line-height: 1.65;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 24px;
}
a {
  text-decoration: none;
  color: #07407A;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B500;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #07407A;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 10px rgba(7,64,122,0.06);
  outline: none;
  min-width: 130px;
}
button:hover, button:focus {
  background: #F7B500;
  color: #07407A;
  box-shadow: 0 4px 18px rgba(247,181,0,0.14);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #07407A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
strong {
  color: #07407A;
  font-weight: 600;
}
em {
  font-style: italic;
  color: #07407A;
}

/* LAYOUT: CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #F7B500 0%, #07407A 100%);
  color: #fff;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 48px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 18px rgba(18,26,61,0.17);
}
.hero p {
  color: #fff;
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 32px;
}

/* CTA BUTTONS */
.cta-main {
  display: inline-block;
  background: #F7B500;
  color: #07407A;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 16px 42px;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(247,181,0,0.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin: 16px 0 0 0;
  text-align: center;
}
.cta-main:hover, .cta-main:focus {
  background: #07407A;
  color: #fff;
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #07407A;
  border: 2px solid #F7B500;
  padding: 13px 38px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F7B500;
  color: #07407A;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(7,64,122,0.12);
  padding: 32px 24px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(247,181,0,0.18);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(18,26,61,0.07);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 500px;
}
.testimonials {
  background: linear-gradient(120deg, #fff 75%, #F7B500 140%);
  padding: 60px 0;
}
.testimonial-card p {
  color: #07407A;
  font-size: 1.08rem;
  line-height: 1.8;
}
.testimonial-author {
  font-size: 1rem;
  color: #232B3E;
  font-weight: 500;
  text-align: right;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(7,64,122,0.08);
  padding: 26px 20px;
  flex: 1 1 220px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 34px rgba(247,181,0,0.17);
  transform: translateY(-6px) scale(1.03);
}
.feature-grid img {
  width: 48px;
  height: 48px;
}

/* UL/OL STYLES */
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
}

ol li {
  list-style-type: decimal;
}
ul li {
  list-style-type: disc;
}

/* CARDS & LISTS FOR OFFERS AND SHOP */
ul > li, ol > li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(7,64,122,0.11);
  padding: 23px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  word-break: break-word;
}
ul > li span {
  background: #F7B500;
  color: #07407A;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 1.1rem;
  margin-left: 8px;
}
ul > li button {
  margin-top: 10px;
  align-self: flex-start;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(120deg, #07407A 65%, #F7B500 160%);
  color: #fff;
  padding: 50px 0 48px 0;
  text-align: center;
  border-radius: 18px;
  margin-bottom: 60px;
}
.cta h2, .cta p {
  color: #fff !important;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 3px solid #F7B500;
  box-shadow: 0 -2px 15px rgba(7,64,122,0.03);
  padding: 28px 0 8px 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  flex-direction: row;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .brand-info {
  max-width: 340px;
  color: #07407A;
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 8px;
}
footer a img {
  width: 120px;
  margin-bottom: 18px;
}
footer a {
  color: #07407A;
  font-size: 1.02rem;
  opacity: 0.98;
  transition: color 0.2s;
}
footer a:hover, footer a:focus {
  color: #F7B500;
  text-decoration: underline;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(7,64,122,0.06);
  border-bottom: 3px solid #07407A;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}
header nav a img {
  width: 92px;
  margin-right: 18px;
  margin-bottom: 0;
}
header nav .cta-main {
  margin-left: auto;
}
header nav a {
  color: #07407A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 10px;
}
header nav a:hover, header nav a:focus {
  color: #F7B500;
}
header nav a.cta-main {
  font-size: 1.15rem;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #F7B500;
  color: #07407A;
  border: none;
  border-radius: 8px;
  font-size: 2.1rem;
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 8px 16px;
  z-index: 130;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #07407A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(7,64,122, 0.98);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.87,-0.01,0,1.11);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F7B500;
  color: #07407A;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 26px;
  padding: 6px 16px;
  z-index: 152;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #07407A;
  box-shadow: 0 2px 12px rgba(7,64,122,0.13);
}
.mobile-nav {
  margin-top: 65px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  transition: background 0.18s, color 0.18s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7B500;
  color: #07407A;
}

/* ------ COOKIE-CONSENT BANNER ------ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 200;
  background: #232B3E;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 18px 18px;
  box-shadow: 0 -4px 14px rgba(7,64,122,0.13);
  border-radius: 16px 16px 0 0;
  gap: 24px;
  animation: slideUpBanner 0.52s cubic-bezier(.83,.01,0,1.04);
}
@keyframes slideUpBanner {
  0% { transform: translateY(110%); opacity: 0; }
  97%{ opacity:1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1rem;
  flex: 1;
  margin: 0;
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 24px;
  border: none;
  background: #F7B500;
  color: #07407A;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(247,181,0,0.11);
  cursor: pointer;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #fff;
  color: #07407A;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: #07407A;
  border: 2px solid #F7B500;
}
.cookie-consent-banner .cookie-settings-btn:hover,
.cookie-consent-banner .cookie-settings-btn:focus {
  background: #07407A;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(18,26,61,0.61);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.45s cubic-bezier(.83,.01,0,1.04);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #232B3E;
  border-radius: 18px;
  padding: 38px 28px 32px 28px;
  max-width: 420px;
  width: 97vw;
  box-shadow: 0 4px 32px rgba(7,64,122,0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #07407A;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 10px 0;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  color: #232B3E;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  opacity: 0.7;
}
.cookie-modal-content .close-modal:hover {
  opacity: 1;
}
.cookie-modal-content button {
  margin-top: 12px;
  width: 100%;
}

/* ----- TEXT SECTION ----- */
.text-section {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px 18px 22px;
  box-shadow: 0 3px 18px rgba(18,26,61,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  padding-left: 24px;
}

/* UTILS */
.mt-32 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.gap-20 { gap: 20px !important; }

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .content-wrapper,
  footer .content-wrapper,
  .container {
    max-width: 970px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .content-wrapper,
  footer .content-wrapper,
  .container {
    max-width: 740px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid {
    gap: 18px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero {
    min-height: 250px;
    padding: 44px 0;
    border-radius: 0 0 25px 25px;
  }
  .hero h1 { font-size: 2rem; }
  .container,
  .content-wrapper {
    max-width: 96vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .card-container,
  .content-grid,
  .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 99vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 36px;
  }
  .cta {
    border-radius: 10px;
    padding: 38px 0 32px 0;
  }
  .section {
    margin-bottom: 37px;
    padding: 18px 8px;
  }
  .text-section {
    padding: 14px 8px 7px 8px;
    border-radius: 9px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 5vw 15px 5vw;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .hero p {
    font-size: 0.97rem;
  }
  .footer .brand-info {
    font-size: 0.97rem;
  }
}
@media (max-width: 560px) {
  .section {
    margin-bottom: 21px;
    padding: 11px 3px;
  }
  .cta,
  .hero {
    padding: 21px 0 !important;
  }
  .feature-grid > div,
  .card {
    padding: 13px 8px;
    border-radius: 7px;
  }
  ul > li, ol > li {
    padding: 10px 7px 8px 7px;
    border-radius: 7px;
  }
}

/* MOBILE NAVIGATION SHOW/HIDE */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ACCESSIBLE FOCUS STATES */
a:focus, button:focus, .cta-main:focus, .cta-secondary:focus {
  outline: 2px dashed #F7B500 !important;
  outline-offset: 3px;
}

/* MISC: ANIMATIONS & EFFECTS */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.25s, transform 0.22s;
}
.cta-main, .cta-secondary, button, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
}

section {
  padding: 10px 0;
}
/* PREVENT GRID PROPERTIES */
/* No grid, columns or absolute positioning for content cards anywhere! All layout is flex-based. */
