/* --------------------------------------------------
 RESET & BASE STYLES
---------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #F2F3F7;
  color: #1b2330;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 24px;
  color: #20334d;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
a {
  color: #1B3556;
  text-decoration: none;
  transition: color .26s ease;
  word-break: break-word;
}
a:hover,
a:focus {
  color: #bfa76a;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1B3556;
  margin-bottom: 16px;
  letter-spacing: .01em;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.9rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p, li {
  font-size: 1rem;
  color: #24344c;
}
p {
  margin-bottom: 18px;
}
strong { color: #bfa76a; font-weight: bold; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(44, 54, 80, 0.06);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  margin-bottom: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --------------------------------------------------
 LUXURY / PREMIUM COLOR PALETTE EXTENSIONS
 (Includes gold accents)
---------------------------------------------------*/
:root {
  --brand-primary: #1B3556;
  --brand-secondary: #7BB38B;
  --brand-accent: #F0F4F8;
  --luxury-gold: #bfa76a;
  --luxury-gold-o: rgba(191,167,106,0.12);
  --luxury-dark: #181C24;
  --luxury-bg: #F2F3F7;
  --luxury-card: #fff;
  --luxury-contrast: #1b2330;
  --luxury-footer: #10131a;
}

/* --------------------------------------------------
 HEADER & NAVIGATION
---------------------------------------------------*/
header {
  width: 100%;
  background: var(--luxury-card);
  box-shadow: 0 2px 16px 0 rgba(44, 54, 80, 0.03);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 18px 16px 18px 16px;
  justify-content: space-between;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: var(--luxury-dark);
  padding: 5px 8px;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color .2s, background .2s;
  border-radius: 8px;
}
.main-nav a.cta-header {
  color: var(--luxury-card);
  background: var(--luxury-gold);
  padding: 7px 20px;
  border-radius: 20px;
  margin-left: 12px;
  font-size: 1.07rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(44, 54, 80, 0.05);
  transition: background .22s, box-shadow .22s;
}
.main-nav a.cta-header:hover {
  background: #a68e54;
  box-shadow: 0 4px 18px 0 rgba(191,167,106,0.11);
  color: #fff;
}
.main-nav a:hover {
  color: var(--luxury-gold);
}
/* Burger only mobile */
.mobile-menu-toggle {
  background: var(--luxury-gold);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 6px 16px 5px 16px;
  border-radius: 50%;
  margin-left: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px 0 rgba(191,167,106,0.12);
  transition: background .22s, box-shadow .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--luxury-gold);
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27, 35, 86, 0.94);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.77,.21,.3,.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--luxury-gold);
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 20px;
  right: 22px;
  cursor: pointer;
  padding: 4px 15px 6px 15px;
  border-radius: 50%;
  z-index: 2222;
  transition: background .2s;
}
.mobile-menu-close:hover {
  background: rgba(191,167,106,0.15);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 42px;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(235, 235, 235, 0.08);
  transition: color .2s, background .16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--luxury-gold);
  background: rgba(191,167,106,0.12);
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* --------------------------------------------------
 HERO / SUBHEADLINE / CTA
---------------------------------------------------*/
.hero-section {
  background: linear-gradient(100deg, var(--luxury-card) 60%, var(--brand-secondary) 120%);
  padding: 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 1px 16px 0 rgba(44,54,80,0.03);
  margin-bottom: 60px;
}
.hero-section .container {
  padding: 64px 12px 54px 12px;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.6rem;
  color: var(--luxury-dark);
  margin-bottom: 16px;
}
.hero-section .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #335078;
  font-size: 1.13rem;
  font-weight: 400;
  max-width: 570px;
  margin: 0 auto 18px auto;
  line-height: 1.4;
}
.cta-main {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  color: var(--luxury-card);
  background: var(--luxury-gold);
  border: none;
  outline: none;
  padding: 13px 42px;
  border-radius: 25px;
  margin-top: 10px;
  box-shadow: 0 2px 16px 0 rgba(191,167,106,0.16);
  letter-spacing: .2px;
  transition: background .19s, box-shadow .25s, transform .1s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid #a68e54;
}
.cta-main:hover, .cta-main:focus {
  background: #a68e54;
  box-shadow: 0 4px 28px 0 rgba(191,167,106,0.14);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

/* --------------------------------------------------
 FLEX LAYOUT UTILS & SPACERS
---------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--luxury-card);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(44, 54, 80, 0.074);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px;
  flex: 1 1 325px;
  min-width: 250px;
  max-width: 99%;
  transition: box-shadow .19s, transform .13s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(191,167,106,0.13);
  transform: translateY(-2px) scale(1.012);
  border: 1px solid var(--luxury-gold-o);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffdf8;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1px 12px 0 rgba(191,167,106,0.11);
  border-left: 4px solid var(--luxury-gold);
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card p {
  color: #1B3556;
  font-size: 1.09rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.testimonial-author {
  color: var(--luxury-gold);
  font-size: 1.01rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--luxury-card);
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(191,167,106,0.07);
  padding: 22px 18px 15px 18px;
  min-width: 190px;
  flex: 1 1 220px;
}
.feature-item img {
  height: 38px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #1B3556;
  font-size: 1.1rem;
  font-weight: 600;
}
.feature-item p {
  color: #385478;
  font-size: 0.99rem;
  font-weight: 500;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

/* For contact details (tel/addr/email) */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  margin-bottom: 14px;
  align-items: center;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: #20334d;
}
.contact-details a {
  color: var(--luxury-gold);
  font-weight: 600;
}
.contact-details img {
  height: 28px;
  width: 28px;
}

/******************************
 BUTTONS & INTERACTIONS
*****************************/
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 1.04rem;
  padding: 11px 30px;
  border-radius: 24px;
  background: var(--luxury-gold);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(191,167,106,0.15);
  transition: background .20s, box-shadow .18s, color .18s;
}
button.accept-all, button.save-prefs {
  color: #fff !important;
}
.button-outline.accept-all {
  color: #a68e54 !important;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #a68e54;
  color: #fff !important;
}
/* For cookie banner specifically */
.button-outline {
  border: 2px solid var(--luxury-gold);
  background: #fff;
  color: var(--luxury-gold);
  margin-right: 8px;
}
.button-outline:hover, .button-outline:focus {
  background: #f5ead2;
  color: #a68e54;
}

/*******************************
 CARDS & UTILS
*******************************/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.next-steps,
.confirmation-message {
  margin: 12px 0 20px 0;
  color: #415270;
  font-size: 1.11rem;
}

/******************************
 FOOTER
*****************************/
footer {
  background: var(--luxury-footer);
  color: #fff;
  padding: 40px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #bfa76a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color .18s;
}
.footer-nav a:hover {
  color: #fff4d0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  font-size: 1.01rem;
  color: #eadec0;
  margin-top: 6px;
}
.footer-contact a {
  color: #bfa76a;
  font-weight: 600;
}
footer img {
  height: 38px;
  margin-bottom: 14px;
}

/******************************
 TABLES (privacy/regulations)
*****************************/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #ebebeb;
}
th {
  background: #f6f5f0;
  color: #1B3556;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/******************************
 RESPONSIVE
*****************************/
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 992px) {
  .content-grid, .features-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 22px 6px;
    border-radius: 12px;
  }
  .hero-section .container {
    padding: 44px 2px 38px 2px;
  }
  .hero-section .content-wrapper {
    padding: 0 4px;
  }
  .hero-section h1 {
    font-size: 1.52rem;
    margin-bottom: 12px;
  }
  h2 { font-size: 1.18rem; margin-bottom: 14px; }
  h3 { font-size: 1.03rem; }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 14px 9px;
    margin-bottom: 15px;
  }
  .features-grid {
    gap: 12px;
  }
  .contact-details {
    gap: 11px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    flex-direction: column;
    gap: 6px 0;
  }
}
@media (max-width:580px) {
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 8px 0;
    font-size: 0.99rem;
    align-items: flex-start;
  }
  footer img {
    height: 33px;
  }
}

/****************************
 COOKIE CONSENT BANNER
****************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: #1B3556;
  color: #fff;
  padding: 23px 18px 20px 18px;
  box-shadow: 0 -2px 28px 0 rgba(44,54,80,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: fade-in-btm .7s cubic-bezier(.6,.1,.6,1);
}
@keyframes fade-in-btm {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-banner p {
  color: #f8eebc;
  font-size: 1.08rem;
  margin-bottom: 2px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.cookie-banner .cookie-buttons button {
  margin-right: 7px;
  font-size: 1.01rem;
  padding: 9px 23px;
  border-radius: 21px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1.5px 9px 0 rgba(191,167,106, 0.09);
}
.cookie-banner .cookie-buttons button:last-child {
  margin-right: 0;
}
.cookie-settings-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 4500;
  min-width: 330px;
  max-width: 96vw;
  max-height: 95vh;
  background: #fff;
  color: #1B3556;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(44,54,80,0.15);
  padding: 34px 28px 30px 28px;
  transform: translate(-50%,-50%) scale(0.97);
  transition: opacity .24s, transform .21s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
}
.cookie-settings-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-settings-modal h2 {
  font-size: 1.31rem;
  color: var(--luxury-gold);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
}
.cookie-category label {
  margin-right: 6px;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #ddd;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  margin-left: 12px;
  transition: background .20s;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  background: #fff;
  width: 19px;
  height: 18px;
  border-radius: 50%;
  transition: transform .18s, background .18s;
  box-shadow: 0 1px 3px 0 rgba(44,54,80,0.09);
}
.cookie-toggle input[type=checkbox]:checked + span {
  transform: translateX(18px);
  background: var(--luxury-gold);
}
.cookie-toggle input[type=checkbox]:checked ~ .cookie-toggle-bg {
  background: var(--luxury-gold);
}
.cookie-close {
  background: none;
  color: #bfa76a;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 50%;
  padding: 3px 12px;
  transition: background .18s;
}
.cookie-close:hover {
  background: #faf5e4;
}
.cookie-settings-modal .cookie-buttons {
  margin-top: 16px;
  display: flex;
  gap: 10px 15px;
}

/*****************************
 MISC / UTILITIES
*****************************/
.gold-text, .gold {
  color: var(--luxury-gold) !important;
}
.bg-secondary {
  background: var(--brand-secondary);
  color: #fff;
}
.bg-accent {
  background: var(--brand-accent);
}
.hidden { display: none !important; }

/*****************************
 PRINT
*****************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-settings-modal {
    display: none !important;
  }
  .section, .container, .content-wrapper {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
  }
}

/* ----------------------------------
 END CSS
----------------------------------*/
