/* == CSS 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;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #F6F9FB;
  color: #1E3A56;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1E3A56;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote { margin-bottom: 18px; }
strong { font-weight: 700; }
a {
  color: #196464;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #BFA056;
  outline: none;
}

/* == LUXURY PREMIUM COLOR PALETTE & FONTS == */
:root {
  --nc-primary: #1E3A56;
  --nc-secondary: #F6F9FB;
  --nc-accent: #BFA056; /* gold */
  --nc-accent-dark: #A38745;
  --nc-gold-text: #BFA056;
  --nc-white: #FFFFFF;
  --nc-button-bg: #1E3A56;
  --nc-button-bg-hover: #BFA056;
  --nc-button-text: #FFFFFF;
  --nc-card-bg: #FFFFFF;
  --nc-shadow: 0 4px 24px rgba(30,58,86,0.10);
  --nc-shadow-deep: 0 8px 32px rgba(30,58,86,0.15);
  --nc-border-radius: 16px;
  --nc-font-display: 'Montserrat', Arial, sans-serif;
  --nc-font-body: 'Source Sans Pro', Arial, sans-serif;
}

/* Montserrat & Source Sans Pro Webfonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

/* == GENERAL CONTAINER & SECTION SPACING == */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}
.section, main > section, footer section {
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
  background: var(--nc-card-bg);
  border-radius: var(--nc-border-radius);
  box-shadow: var(--nc-shadow);
}

/* Content align pattern for all major wrappers */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/*.card-container – not directly in HTML, but standard pattern */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--nc-card-bg);
  border-radius: var(--nc-border-radius);
  box-shadow: var(--nc-shadow);
  padding: 32px 28px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  position: relative;
  min-width: 280px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover {
  box-shadow: var(--nc-shadow-deep);
  transform: translateY(-4px) scale(1.015);
  border-color: var(--nc-accent);
}

.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 {
  font-size: 1.1rem;
  color: #23334B;
  line-height: 1.82;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  background: #FFF;
  border-radius: var(--nc-border-radius);
  box-shadow: 0 2px 16px rgba(30, 58, 86, 0.13);
  margin-bottom: 20px;
  border-left: 4px solid var(--nc-accent);
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #172133;
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--nc-primary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #FFF;
  border-radius: var(--nc-border-radius);
  box-shadow: 0 2px 8px rgba(191,160,86,0.09);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(191,160,86,0.09);
  transition: box-shadow 0.16s, border-color 0.17s;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  color: var(--nc-primary);
  font-size: 1.09rem;
  margin-bottom: 8px;
}
.feature-grid > div:hover {
  border-color: var(--nc-accent);
  box-shadow: 0 2px 28px rgba(191,160,86,0.17);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.faq-list > div {
  background: #FFF;
  box-shadow: 0 2px 8px rgba(30,58,86,0.11);
  border-radius: 14px;
  padding: 18px 20px;
  flex: 1 1 340px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.faq-list > div:hover {
  box-shadow: 0 6px 24px rgba(30,58,86,0.15);
}
.faq-list h2 {
  font-size: 1.15rem;
  margin-bottom: 7px;
  color: var(--nc-primary);
}

/* == NAVIGATION & HEADER == */
header {
  width: 100%;
  background: #FFF;
  border-bottom: 2px solid #F2F2F2;
  box-shadow: 0 2px 12px rgba(30, 58, 86, 0.08);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  height: 70px;
}
nav img {
  height: 42px;
  width: auto;
  display: block;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  align-items: center;
  margin-left: 10px;
}
nav ul li {
  display: flex;
  align-items: center;
  height: 100%;
}
nav ul li a {
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: var(--nc-font-display);
  color: #23334B;
  font-weight: 600;
  transition: color 0.18s, background 0.17s;
}
nav ul li a:hover, nav ul li a:focus {
  color: var(--nc-gold-text);
  background: #f5ede1;
  outline: none;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--nc-gold-text) 75%, var(--nc-accent-dark) 100%);
  color: #1E232D;
  font-family: var(--nc-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 40px;
  margin-left: 20px;
  letter-spacing: 0.02em;
  outline: none;
  border: none;
  box-shadow: 0 2px 12px rgba(191,160,86,0.09);
  transition: background 0.18s, color 0.17s, transform 0.13s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-shadow: 0 1px 0px rgba(255,255,255,0.07);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--nc-accent-dark) 60%, var(--nc-gold-text) 100%);
  color: #1E3A56;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 24px rgba(191,160,86,0.10);
  border-color: var(--nc-accent);
  outline: none;
}

/* == MOBILE MENU == */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1031;
  background: #FFF;
  border: 2px solid var(--nc-accent);
  color: var(--nc-primary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 12px rgba(191,160,86,0.13);
  cursor: pointer;
  transition: background 0.15s, border 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--nc-accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,58,86,0.95);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.57,.21,.69,1.25);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 26px 0 0;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1251;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--nc-gold-text);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  margin-top: 70px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-size: 1.36rem;
  color: #FFF;
  padding: 16px 0;
  text-align: center;
  border-radius: 8px;
  width: 90vw;
  font-family: var(--nc-font-display);
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nc-accent);
  color: #1E3A56;
}

@media (max-width: 1023px) {
  nav ul {
    gap: 9px;
  }
  nav {
    gap: 7px;
    padding-left: 6px;
    padding-right: 10px;
  }
  .cta-button {
    font-size: 1rem;
    padding: 10px 23px;
    margin-left: 10px;
  }
}

@media (max-width: 900px) {
  nav ul,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header nav img {
    margin-left: 4px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .section, main > section, footer section {
    padding: 24px 7px 24px 7px;
    margin-bottom: 36px;
    border-radius: 13px;
  }
  .content-wrapper {
    gap: 14px;
    padding-right: 0;
    padding-left: 0;
  }
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    padding: 16px 10px;
    margin-bottom: 15px;
  }
  .faq-list {
    flex-direction: column;
    gap: 14px;
  }
  .faq-list > div {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.14rem; }
  .feature-grid img { width: 30px; height: 30px; }
}


/* == BUTTONS == */
button, .cta-button {
  font-family: var(--nc-font-display);
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow 0.17s, background 0.18s, color 0.15s;
}
button:focus {
  outline: 2px solid var(--nc-accent);
}

/* == FORMS (if added) == */
input, textarea {
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 7px;
  border: 1px solid #E0E0E0;
  background: #FFF;
  margin-bottom: 14px;
  font-family: var(--nc-font-body);
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  border-color: var(--nc-accent);
  outline: none;
}

/* == TYPOGRAPHY == */
.usps {
  padding-left: 24px;
  font-size: 1.09rem;
  margin-bottom: 18px;
}
.usps li {
  margin-bottom: 10px;
  list-style: disc inside;
}

ol, ul {
  padding-left: 28px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}

/* == TIMELINE GRAPHIC PLACEHOLDER == */
.timeline-graphic {
  margin: 20px 0 10px 0;
  padding: 18px 0 10px 0;
  color: #888;
  font-style: italic;
  border-left: 4px solid var(--nc-accent);
  padding-left: 18px;
}

/* == FOOTER == */
footer {
  background: #F6F9FB;
  border-top: 2px solid #EBEBEB;
}
footer section {
  background: transparent;
  box-shadow: none;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-bottom: 0;
  border-radius: 0;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin-bottom: 12px;
  align-items: center;
}
footer ul li a {
  color: var(--nc-primary);
  font-size: 1.01rem;
  padding: 6px 10px;
  border-radius: 7px;
  font-weight: 600;
  transition: color 0.15s, background 0.14s;
}
footer ul li a:hover {
  background: var(--nc-accent);
  color: #FFF;
}
footer .text-section {
  font-size: 1rem;
  color: #2d3646;
  margin-bottom: 5px;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2200;
  background: #222E3A;
  color: #FFF;
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -8px 32px rgba(30,58,86,0.16);
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.cookie-banner strong { color: var(--nc-accent); }
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 6px;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  padding: 11px 28px;
  border-radius: 28px;
  border: none;
  font-family: var(--nc-font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(191,160,86,0.13);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .accept {
  background: var(--nc-accent);
  color: #1E232D;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--nc-accent-dark);
  color: #FFF;
}
.cookie-banner .reject {
  background: #FFF;
  color: var(--nc-primary);
  border: 1.5px solid var(--nc-accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E9E1CB;
  color: var(--nc-primary);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--nc-accent);
  border: 1.5px solid var(--nc-accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--nc-accent);
  color: #FFF;
}
@media (max-width: 600px) {
  .cookie-banner {
    font-size: .97rem;
    padding: 14px 3px 14px 3px;
    gap: 13px;
  }
  .cookie-banner .cookie-btn-row {
    gap: 8px;
  }
}

/* == COOKIE MODAL == */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 2500;
  background: rgba(30,58,86,0.85);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #FFF;
  color: #162647;
  border-radius: 25px;
  max-width: 95vw;
  width: 390px;
  box-shadow: 0 12px 54px rgba(30,58,86,0.19);
  padding: 36px 22px 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookieSlideIn .29s cubic-bezier(.67,1.3,.73,0.97);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(120px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-dialog h2 {
  color: var(--nc-primary);
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  color: var(--nc-primary);
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--nc-accent);
  outline: 2px solid var(--nc-accent-dark);
  margin-right: 5px;
}
.cookie-modal-dialog .cookie-modal-actions {
  margin-top: 17px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-dialog .close-modal {
  background: transparent;
  color: #1E3A56;
  font-size: 1.7rem;
  border: none;
  position: absolute;
  top: 12px; right: 14px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-dialog .close-modal:hover {
  color: var(--nc-accent);
}
.cookie-modal-dialog button {
  padding: 11px 18px;
  border-radius: 18px;
  border: none;
  font-family: var(--nc-font-display);
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal-dialog .save {
  background: var(--nc-accent);
  color: #FFF;
}
.cookie-modal-dialog .save:hover {
  background: var(--nc-accent-dark);
}
.cookie-modal-dialog .cancel {
  background: #FFF;
  color: var(--nc-primary);
  border: 1.5px solid var(--nc-accent);
}
.cookie-modal-dialog .cancel:hover {
  background: var(--nc-accent);
  color: #FFF;
}

@media (max-width: 430px) {
  .cookie-modal-dialog {
    padding: 17px 7px 12px 7px;
    width: 95vw;
  }
}

/* ---- Utility and extras for cards, dark text requirement for testimonials, etc. ---- */
.testimonial-card {
  color: #1E3A56; /* DARK text */
  background: #FFF;
}

/* == MICRO-INTERACTIONS == */
.card, .feature-grid > div, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.17s, transform 0.12s;
}
.card:hover, .feature-grid > div:hover, .faq-list > div:hover {
  box-shadow: 0 8px 24px rgba(191,160,86,0.15);
  transform: translateY(-2px) scale(1.017);
}

.cta-button:active, button:active {
  transform: scale(0.97);
}

/* == LINKS ACCESSIBILITY == */
a:focus-visible {
  outline: 2px solid var(--nc-accent);
  outline-offset: 3px;
}

/* == Z-INDEX and OVERLAP LAYERING == */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1000;
}
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 2200; }
.cookie-modal { z-index: 2500; }

/* == ENSURE NO GRID & NO ABSOLUTE FOR CONTENT == */
/* Only logo/decorative SVG may use position: absolute if ever needed */
/* All other main containers use exclusively display: flex */

/* == END OF STYLE == */