/* =========================
   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,
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body { line-height: 1.5; background: #fff; color: #232A38; }
:focus { outline: 2px solid #F8B400; outline-offset: 2px; }
img { max-width: 100%; display: block; border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, textarea, select { font-family: inherit; font-size: 100%; border-radius: 0; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; text-align: left; }

/* =========================
   FONTS & TYPOGRAPHY
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #232A38;
  --color-secondary: #F8B400;
  --color-accent: #FFFFFF;
  --color-gray: #f6f8fb;
  --color-gray-dark: #b2b9c8;
  --shadow-main: 0 4px 24px 0 rgba(35, 42, 56, 0.10), 0 1.5px 4px 0 rgba(35, 42, 56, 0.04);
  --shadow-card: 0 4px 16px 0 rgba(35, 42, 56, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.24;
}
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul li, ol li { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.7; }
strong, b { font-weight: 700; }
small { font-size: 0.92rem; color: var(--color-gray-dark); }

/* Typography hierarchy */
@media (min-width: 600px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.45rem; }
  h4 { font-size: 1.2rem; }
}

/* =========================
   GLOBAL LAYOUT & SPACING
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  flex: 1 1 270px;
  min-width: 250px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: var(--color-gray);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(248,180,0,0.15), var(--shadow-card);
  transform: translateY(-3px) scale(1.013);
  z-index: 2;
}
.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;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #232A38;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 28px;
  margin-bottom: 24px;
  min-width: 270px;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #232A38;
}
.testimonial-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1.07rem;
  font-weight: 700;
  align-items: center;
  color: #646e83;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid custom (used in many sections) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 0;
  transition: box-shadow 0.15s, transform 0.13s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(232, 165, 0, 0.10), var(--shadow-card);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: var(--color-primary);
  padding: 0;
  box-shadow: 0 2px 8px 0 rgba(35,42,56,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 76px;
}
.logo img { height: 46px; width: auto; display: block; margin-right: 18px; }
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  position: relative;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.13s, color 0.17s;
}
nav a:hover,
nav a:focus {
  color: var(--color-secondary);
  background: rgba(248,180,0,0.06);
}

.cta-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  padding: 12px 28px 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-main);
  cursor: pointer;
  transition: background 0.20s, color 0.20s, transform 0.15s;
  margin-left: 24px;
  position: relative;
  z-index: 2;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #ffd35b;
  color: #232A38;
  transform: scale(1.04) translateY(-1px);
}

/* Burger menu button (mobile) */
.mobile-menu-toggle {
  background: var(--color-secondary);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  cursor: pointer;
  z-index: 201;
  box-shadow: 0 2px 10px 0 rgba(35,42,56,0.09);
  transition: background 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffd35b;
}

/* =========================
   MOBILE NAVIGATION MENU
   ========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35, 42, 56, 0.97);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.73,0.36,0.33,1.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.5rem;
  background: #F8B400;
  border: none;
  color: #232A38;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 24px 24px 12px 0;
  cursor: pointer;
  display: block;
  align-self: flex-end;
  box-shadow: 0 2px 8px 0 rgba(35,42,56,0.08);
  z-index: 302;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  padding: 24px 34px;
  align-items: flex-start;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  padding: 10px 0 8px 5px;
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  transition: background 0.13s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(248,180,0,0.12);
  color: #F8B400;
}

@media (max-width: 1050px) {
  nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1051px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================
   MAIN BODY CONTENT
   ========================= */
main {
  padding-top: 18px;
  background: #fff;
  min-height: 50vh;
}
section {
  margin-bottom: 60px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.section { /* already defined for .section specialization above */ }

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 8px;
}
ul li strong, ol li strong {
  font-weight: 700;
  color: var(--color-primary);
}
dl { margin-bottom: 26px; }
dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  margin-top: 20px;
}
dd { margin-left: 0; font-size: 1.07rem; margin-bottom: 10px; }

.feature-item strong {
  color: var(--color-secondary);
}

ol {
  list-style-type: decimal;
  margin-left: 28px;
}

/* =========================
   TABLES & FAQ
   ========================= */
table {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 24px;
}
thead {
  background: #232A38;
  color: #fff;
  font-weight: 700;
}
thead th {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.05rem;
  background: #232A38;
  border-bottom: 2px solid #F8B400;
}
tbody td {
  font-weight: 500;
  background: #fafafa;
  color: #232A38;
  border-bottom: 1px solid #ececec;
}
caption {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-secondary);
  font-family: var(--font-display);
}

.faq-snippet, .faq-contact-prompt {
  background: #fffbe7;
  border-left: 6px solid #F8B400;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: #232A38;
  margin-bottom: 16px;
  margin-top: 12px;
}
.faq-snippet h3 { margin-top: 0; margin-bottom: 8px; }


/* =========================
   FOOTER
   ========================= */
footer {
  background: #232A38;
  color: #fff;
  padding: 36px 0 0 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-main a img { height: 40px; width: auto; margin-bottom: 12px; }
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 1.08rem;
  color: #F8B400;
  font-weight: 600;
}
footer nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: #F8B400;
  padding: 3px 2px;
  border-radius: 0;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus { color: #fff; }
.footer-contact {
  font-size: 1.07rem;
  line-height: 1.61;
  margin-bottom: 8px;
  color: #fff;
}
footer a {
  text-decoration: underline;
  color: #F8B400;
  font-weight: 700;
}
footer p {
  font-size: 0.97rem;
  color: #d6d9e0;
  text-align: center;
  margin-bottom: 20px;
}

/* =========================
   FORMS & INTERACTIVE SECTIONS
   ========================= */
.form-intro {
  padding: 18px 18px 12px 20px;
  background: #fffbe7;
  border-radius: var(--radius-md);
  border-left: 5px solid #F8B400;
  font-weight: 600;
  color: #232A38;
  margin-bottom: 14px;
}
.form-fields ul {
  padding: 0 0 0 22px;
  margin-bottom: 8px;
}
.form-fields li { margin-bottom: 7px; font-size: 1.07rem; }
.form-fields p {
  color: #646e83;
  margin-top: 10px;
  font-size: 1rem;
}
.contact-form-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 0;
}
.contact-form-info ul {
  flex: 1 1 250px;
  min-width: 190px;
}
.contact-map-placeholder {
  flex: 1 1 150px;
  min-width: 130px;
  max-width: 230px;
}
.contact-map-placeholder img {
  max-height: 120px;
  width: auto;
  border-radius: var(--radius-md);
  background: #f8b40010;
  padding: 12px;
  box-shadow: 0 4px 18px 0 rgba(35,42,56,0.09);
}

/* =========================
   BUTTONS & INTERACTIONS
   ========================= */
button, .cta-btn {
  appearance: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
  font-weight: bold;
}

.button,
.cookie-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.06rem;
  font-weight: 800;
  font-family: var(--font-display);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  box-shadow: 0 2px 8px 0 rgba(35,42,56,0.09);
  margin-right: 10px;
}
.button:hover, .button:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #ffd35b;
  color: #232A38;
  box-shadow: 0 5px 24px 0 rgba(248,180,0,0.11);
}

.cookie-btn--secondary {
  background: #fff;
  color: #232A38;
  border: 2px solid #F8B400;
  font-weight: 700;
  margin-right: 10px;
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: #fffbe7;
}

.cookie-btn--plain {
  background: none;
  color: #232A38;
  border: none;
  font-weight: 700;
  text-decoration: underline;
  padding: 8px 0;
  min-width: 0;
  margin-right: 0;
}
.cookie-btn--plain:hover, .cookie-btn--plain:focus {
  color: #F8B400;
  background: none;
}

/* =========================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232A38;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 12px 0 rgba(35,42,56,0.15);
  z-index: 9000;
  animation: cookie-banner-in 0.55s cubic-bezier(0.72,0.10,0.33,1.16);
  font-family: var(--font-body);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner strong {
  color: #F8B400;
}
.cookie-banner .cookie-btn { margin-bottom: 6px; margin-top: 4px; }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(35, 42, 56, 0.86);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.08);
  transition: opacity 0.24s, transform 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1.00);
}
.cookie-modal-content {
  background: #fff;
  color: #232A38;
  border-radius: var(--radius-lg);
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 10px 50px 0 rgba(35,42,56,0.17);
  padding: 40px 34px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.cookie-modal-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.27rem;
  color: #F8B400;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #b2b9c8;
  border-radius: 16px;
  position: relative;
  transition: background 0.15s;
  vertical-align: middle;
  margin-right: 8px;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #F8B400;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 1.3px;
  top: 1.1px;
  transition: left 0.17s;
}
.cookie-toggle:checked::before {
  left: 15px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #232A38;
  font-size: 1.8rem;
  font-weight: 700;
  align-self: flex-end;
  cursor: pointer;
  margin-top: -16px;
  margin-bottom: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal .cookie-category strong {
  color: #F8B400;
  font-size: 1.08rem;
}
.cookie-category label { cursor: pointer; font-weight: 500; }

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1050px) {
  .footer-main { flex-direction: column; gap: 12px; align-items: flex-start; }
  nav { display: none !important; }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .footer-main { gap: 18px; }
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div { min-width: 0; }
  .testimonials { flex-direction: column; gap: 14px; }
  .testimonial-card { min-width: 80vw; }
}
@media (max-width: 700px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section { padding: 34px 8px; margin-bottom: 42px; }
  footer { padding-top: 20px; }
}
@media (max-width: 768px) {
  html { font-size: 91%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.14rem; }
  .content-grid, .card-container { flex-direction: column !important; gap: 18px; }
  .footer-main { flex-direction: column; gap: 9px; align-items: flex-start; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .feature-item { gap: 8px; }
  .testimonial-card { padding: 18px 8px; font-size: 1rem; }
  .feature-grid > div { padding: 20px 12px; }
}
@media (max-width: 480px) {
  .section { padding: 20px 2px; }
  .footer-main { gap: 4px; }
  .card, .testimonial-card { min-width: 92vw; }
}

/* =========================
   BOLD GEOMETRIC SHAPES / ACCENTS
   ========================= */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: -38px;
  right: -38px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(248,180,0,0.10);
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  bottom: -36px;
  left: -30px;
  width: 70px;
  height: 70px;
  border-radius: 30% 70% 86% 14% / 36% 71% 29% 64%;
  background: rgba(35,42,56,0.07);
  z-index: 0;
  pointer-events: none;
}
.section > * { position: relative; z-index: 1; }

/* For testimonial cards, even bolder accent on hover */
.testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(248,180,0,0.09), var(--shadow-card);
  background-color: #fffbe7;
}

/* =========================
   UTILITY CLASSES
   ========================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.bold { font-weight: 800; }

/* =========================
   ACCESSIBILITY
   ========================= */
.sr-only {
  position: absolute;
  left: -9999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===============
   END OF FILE
   =============== */