/* 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, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F8F3E3;
  color: #2B2B2B;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: outside;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #214175;
  font-weight: 600;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
}
p, li, dd, dt {
  font-size: 1rem;
  line-height: 1.7;
  color: #2B2B2B;
}
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #66A0A8;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(33, 65, 117, 0.04);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 15px 0 rgba(33,65,117,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  border: 1.5px solid #E6D7AE;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(33,65,117,0.06);
  padding: 28px 22px;
  border-left: 6px solid #C09532;
}

/* BUTTONS & CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #214175;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 38px;
  border-radius: 26px;
  border: none;
  box-shadow: 0 4px 16px 0 rgba(33,65,117,0.07);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  position: relative;
  margin-top: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #C09532;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(33,65,117,0.12);
  outline: none;
}

/* HEADER, NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(33,65,117,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #214175;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 8px;
  border-bottom: 2.5px solid transparent;
  transition: border 0.2s, color 0.15s;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C09532;
  border-bottom: 2.5px solid #C09532;
  background: #F8F3E3;
  outline: none;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 26px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #214175;
  font-size: 2.1rem;
  display: none;
  cursor: pointer;
  z-index: 1101;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: #E6D7AE;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 32px 42px 32px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.4,.25,.3,1);
  box-shadow: 0 16px 64px rgba(33,65,117,0.22);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #214175;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:focus{
  background: #E6D7AE;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #214175;
  padding: 14px 0 12px 0;
  border-bottom: 2.5px solid transparent;
  transition: border 0.16s, color 0.12s, background 0.18s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus{
  color: #C09532;
  background: #F8F3E3;
  border-bottom: 2.5px solid #C09532;
  outline: none;
}
@media (max-width: 1000px) {
  .main-nav{
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav {
    gap: 10px;
  }
  .cta-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* FOOTER */
footer {
  background: #1A2342;
  color: #fff;
  padding: 32px 0 10px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F8F3E3;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.18s;
  border-bottom: 2.5px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C09532;
  border-bottom: 2.5px solid #C09532;
  outline: none;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.footer-info img {
  width: 38px;
  height: 38px;
}
.footer-info span {
  font-size: 0.98rem;
  color: #EEE9DC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* SECTIONS & CARDS */
section {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
ul, ol {
  margin-left: 18px;
  margin-bottom: 14px;
  padding-left: 10px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.65;
  padding-left: 4px;
}
dt {
  font-weight: bold;
  color: #214175;
  margin-top: 18px;
}
dd {
  margin-bottom: 10px;
  margin-left: 10px;
  color: #474747;
}

.card {
  border-left: 6px solid #C09532;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 18px;
  box-shadow: 0px 1px 13px 0 rgba(33,65,117,.08);
  margin-bottom: 28px;
  min-width: 220px;
  max-width: 600px;
  border-left: 6px solid #C09532;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #214175;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 1.06rem;
  color: #474747;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-top: 2px solid #C09532;
  box-shadow: 0 -2px 16px rgba(33,65,117,0.13);
  padding: 22px 14px 18px 14px;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B2B2B;
  animation: cookieSlideIn 0.7s cubic-bezier(.5,.15,.4,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  background: #C09532;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 20px;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(33,65,117,0.07);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #214175;
  color: #fff;
  outline: none;
}
.cookie-banner .settings-btn {
  background: #fff;
  color: #214175;
  border: 2px solid #214175;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #C09532;
  color: #fff;
  border-color: #C09532;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1300;
  background: #fff;
  padding: 38px 30px 24px 30px;
  border-radius: 22px;
  box-shadow: 0 8px 40px 6px rgba(33,65,117,0.11);
  transform: translate(-50%, -60%);
  min-width: 310px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: modalBounceIn 0.5s cubic-bezier(.65,.1,.4,1);
}
@keyframes modalBounceIn {
  from { transform: translate(-50%, -60%) scale(0.8); opacity: 0; }
  to   { transform: translate(-50%, -60%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #214175;
  font-size: 1.27rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.cookie-modal .essential {
  color: #888;
}
.cookie-modal .modal-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.cookie-modal .modal-close {
  background: #fff;
  color: #214175;
  border: 2px solid #214175;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, border 0.13s;
  margin-top: 0;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #C09532;
  color: #fff;
  border-color: #C09532;
}

@media (max-width: 540px) {
  .cookie-banner {
    font-size: 0.95rem;
    padding: 14px 4px 12px 4px;
  }
  .cookie-modal {
    min-width: 240px;
    padding: 26px 7vw 17px 7vw;
  }
}

/* FORMS AND CONTENT */
input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #CED6E0;
  padding: 10px 14px;
  background: #fff;
  margin-bottom: 12px;
  transition: box-shadow 0.15s, border 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #C09532;
  box-shadow: 0 1px 7px 0 rgba(192,149,50,0.11);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #214175;
  margin-bottom: 7px;
}

/* GOLD ACCENTS (Luxury Style) */
hr {
  border: 0;
  height: 1.5px;
  background: #C09532;
  margin: 26px 0;
  border-radius: 1px;
}
@media (max-width: 600px){
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .footer-info img { width: 30px; height: 30px; }
}

/* QUOTES & TYPOGRAPHY DETAILS */
blockquote {
  font-style: italic;
  border-left: 5px solid #C09532;
  background: #FAF7F1;
  color: #214175;
  margin: 18px 0;
  padding: 14px 28px 14px 16px;
  border-radius: 11px;
}

em {
  color: #C09532;
  font-style: italic;
}
b, strong {
  color: #214175;
}

/* Links as text accents */
a {
  color: #214175;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #C09532;
  outline: none;
}

/* Responsive flex for text-image sections, card grids, etc. */
@media (max-width: 900px){
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 22px 2px;
    margin-bottom: 34px;
  }
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1rem;
    min-width: unset;
  }
}

/* Spacing and Gaps: Guarantee by utility classes */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }
.gap-20 { gap: 20px !important; }

/* Luxury micro-interactions and subtle shadows */
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.18s, border-color 0.22s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(192,149,50,0.15), 0 1px 15px 0 rgba(33,65,117,0.07);
  border-color: #214175;
}

/* Extra luxury gold accent */
.card::before, .testimonial-card::before, .feature-item::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 0;
  border-radius: 0 0 10px 0;
  box-shadow: none;
  /* Gold accent decorative marker could be added by SVG or more advanced stylings */
}

/* Z-index stacking - overlays always top */
.cookie-banner, .cookie-modal, .mobile-menu {
  z-index: 2100;
}
header { z-index: 2000; }

/* Accessibility: focus/active states */
button:focus-visible, a:focus-visible {
  outline: 2px solid #C09532;
  outline-offset: 3px;
}

/* Hide content visually, keep for screen readers (for cookie modals if needed) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* PRINT STYLE MINIMAL (for privacy/terms pages) */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { color: #111; background: #fff; }
}

/* Font face declarations (load from Google Fonts in HTML for best compatibility) */

/* EOF */
