/* --- CSS RESET & BASE STYLES --- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F5F7FA;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #053152;
  background: #F5F7FA;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #E66900;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.54,.01,.57,1.07);
}
a:hover, a:focus {
  color: #053152;
  text-decoration: underline;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.3em;
}
strong, b {
  font-weight: 700;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; color: #053152; letter-spacing: 0.01em; }
h2 { font-size: 2rem; color: #E66900; margin-bottom: 24px; }
h3 { font-size: 1.5rem; color: #053152; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p, ul, ol, li, table, th, td {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #053152;
  line-height: 1.7;
}

/* --- LAYOUT UTILS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 32px;
    margin-bottom: 24px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(24, 41, 56, 0.09);
  position: relative;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #053152;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(5,49,82,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
header img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  transition: color 0.2s cubic-bezier(.54,.01,.57,1.07);
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #E66900;
  transition: width .25s;
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a.active, .main-nav a[aria-current="page"] {
  color: #E66900;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E66900;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 4px 16px 0 rgba(230, 105, 0, 0.12);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.16s, color 0.2s;
  margin-left: 12px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #FF9416;
  color: #053152 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px 0 rgba(230, 105, 0, 0.16);
  text-decoration: none;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-left: 10px;
  cursor: pointer;
  z-index: 220;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #E66900;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #053152;
  color: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.62, 0, 0.33, 1.02);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.mobile-menu.open {transform: translateX(0);}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 3002;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E66900;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E66900;
  background: rgba(230,105,0,0.08);
}

@media (min-width: 992px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}
@media (max-width: 991px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  header .container {
    min-height: 60px;
    height: auto;
    gap: 6px;
    justify-content: flex-start;
  }
}

/* --- HERO, SECTIONS, CARDS --- */
main {
  width: 100%;
  margin-top: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.section,.card {
  margin-bottom: 20px;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(24,41,56,0.10);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(230, 105, 0, 0.12);
  transform: translateY(-2.5px) scale(1.01);
}

.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 {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 991px) {
  .content-grid, .card-container {
    gap: 16px;
  }
  .card {
    min-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .section, section {
    margin-bottom: 32px;
    padding: 26px 0;
    border-radius: 0;
    box-shadow: none;
  }
  .content-wrapper, .card-container, .content-grid {
    gap: 16px;
  }
}

/* --- BUTTONS --- */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  background: #E66900;
  color: #fff;
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.14s;
  box-shadow: 0 3px 15px 0 rgba(230, 105, 0, 0.08);
}
button:hover,
button:focus,
.btn:hover, .btn:focus {
  background: #053152;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(5,49,82,0.06);
  overflow: hidden;
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  background: #F5F7FA;
  color: #053152;
  font-size: 1.08rem;
}
td {
  border-bottom: 1px solid #e5e7ea;
}
tr:last-child td {
  border-bottom: none;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #F5F7FA;
  border-radius: 15px;
  box-shadow: 0 2px 9px 0 rgba(24,41,56,0.08);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 520px;
  font-size: 1.1rem;
  color: #053152;
  line-height: 1.7;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #E66900;
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card p {
  color: #053152;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 1.01rem;
  }
}

/* --- ACCORDION FAQ --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(5,49,82,0.05);
  padding: 18px 22px;
  transition: box-shadow 0.21s;
}
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  color: #E66900;
}
.faq-item p {
  color: #053152;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 18px 0 rgba(230,105,0,0.14);
}

/* --- QUICKLINKS (FAQ) --- */
.quicklinks ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.quicklinks a {
  color: #E66900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff;
  border-radius: 60px;
  padding: 10px 22px;
  box-shadow: 0 1px 5px 0 rgba(24,41,56,0.10);
  transition: background 0.16s, color 0.18s;
}
.quicklinks a:hover, .quicklinks a:focus {
  background: #E66900;
  color: #fff;
}

/* --- FOOTER --- */
footer {
  background: #053152;
  color: #fff;
  padding: 40px 0 20px 0;
  width: 100%;
  box-shadow: 0 -2px 18px 0 rgba(5,49,82,0.12);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  width: 46px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E66900;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.97rem;
}
.social-media {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-media img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1) drop-shadow(0 0 4px #E66900);
  transition: filter 0.16s;
  cursor: pointer;
}
.social-media img:hover, .social-media img:focus {
  filter: brightness(1.2) sepia(1) saturate(6) hue-rotate(-30deg) drop-shadow(0 0 8px #E66900);
}

@media (max-width: 991px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  footer {
    padding: 22px 0 12px 0;
  }
  footer img { width: 36px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #053152;
  box-shadow: 0 -2px 16px 0 rgba(5,49,82,0.11);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 10px 16px 10px;
  font-size: 1.06rem;
  animation: cookieIn 0.65s cubic-bezier(.5,-0.01,.31,1.13);
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity:0; }
  90% {opacity:1;}
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  background: #E66900;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, color 0.2s, transform 0.16s;
  box-shadow: 0 3px 15px 0 rgba(230, 105, 0, 0.09);
}
.cookie-banner button.reject {
  background: #053152;
}
.cookie-banner button.settings {
  background: #F5F7FA;
  color: #053152;
  border: 1.7px solid #E66900;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FF9416;
  color: #053152;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #1D425F;
  color: #fff;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #E66900;
  color: #fff;
  border: 1.7px solid #FF9416;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 315px;
  max-width: 98vw;
  width: 430px;
  background: #fff;
  color: #053152;
  border-radius: 22px;
  box-shadow: 0 7px 44px 0 rgba(5,49,82,0.18);
  z-index: 12000;
  padding: 32px 32px 24px 32px;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #E66900;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 12px 0;
  font-size: 1.03rem;
}
.cookie-modal .category-label {
  flex: 1 1 auto;
  font-weight: 600;
}
.cookie-modal .cookie-switch {
  display: flex;
  align-items: center;
  gap: 3px;
}
.cookie-modal input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.cookie-modal .switch-label {
  display: inline-block;
  width: 44px;
  height: 25px;
  background: #F5F7FA;
  border-radius: 40px;
  position: relative;
  transition: background 0.18s;
}
.cookie-modal .switch-label:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 17px;
  height: 17px;
  background: #E66900;
  border-radius: 50%;
  transition: 0.18s;
}
.cookie-modal input:checked + .switch-label {
  background: #E66900;
}
.cookie-modal input:checked + .switch-label:after {
  background: #fff;
  left: 23px;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  color: #053152;
  border: none;
  font-size: 1.68rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #E66900;
}

/* --- FORMS (Only generic, not in current HTML but for extensibility) --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #E66900;
  border-radius: 8px;
  padding: 10px 13px;
  outline: none;
  margin-bottom: 15px;
  background: #fff;
  transition: border 0.19s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #053152;
  box-shadow: 0 2px 10px 0 rgba(5,49,82,0.09);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* --- MICRO-INTERACTIONS --- */
.cta-btn, button, .btn, .quicklinks a, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.cta-btn:active, .btn:active, button:active {
  transform: scale(0.98);
}

/* --- VIBRANT ENERGETIC HIGHLIGHTS --- */
.section, .card, .testimonial-card, .faq-item {
  box-shadow: 0 4px 24px 0 rgba(230, 105, 0, 0.05);
}
section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #E66900;
  text-shadow: 0 2px 12px #fff5e6, 0 0px 1px #053152;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
}
.cta-btn, .cookie-banner button, .cookie-modal button {
  box-shadow: 0 2px 16px 0 rgba(230, 105, 0, 0.12);
}
hr {
  border: none;
  border-top: 1.5px solid #E66900;
  margin: 36px 0;
}

/* --- RESPONSIVE COMMON --- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  section { padding: 24px 0; }
  .container { padding: 0 7px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.10rem; }
  .footer-info p { font-size: 0.95rem; }
}

/* --- VIBRANT & ENERGETIC DECORATIVE (simple) --- */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: 40px;
  width: 58px;
  height: 6px;
  border-radius: 4px;
  background: #E66900;
  opacity: .2;
  z-index: 1;
}
@media (max-width: 991px) {
  .section:before { left: 18px; width: 38px; top: -12px; }
}

/* --- PRINT (for tables, policies) --- */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu {display:none !important;}
  main, .container, body {background: #fff !important; color: #000 !important; box-shadow: none !important;}
}
