/* ===== CSS RESET & BASE ===== */
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, 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, menu, 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 {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background-color: #F5F6F6;
  color: #26344B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}
a {
  color: #14A389;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover, a:focus {
  color: #BFA152;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #26344B;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-weight: 500;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  color: #384969;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: #26344B;
  font-weight: 600;
}
ul, ol {
  margin-bottom: 16px;
  margin-left: 24px;
  font-size: 1rem;
  color: #384969;
}
ul li, ol li {
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(38,52,75,0.07);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(38,52,75,0.09);
  padding: 28px 24px;
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 22px rgba(191,161,82,0.16);
  transform: translateY(-3px) scale(1.015);
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F6F6;
  border-left: 6px solid #BFA152;
  border-radius: 14px;
  margin-bottom: 26px;
  box-shadow: 0 3px 18px rgba(38,52,75,0.06);
}
.testimonial-card p {
  color: #26344B;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #7C7C7C;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== MAIN NAVIGATION ===== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  min-height: 68px;
  position: relative;
  z-index: 1202;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 20px;
}
.main-nav a {
  color: #26344B;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 12px;
  transition: color 0.15s, background 0.2s;
  border-radius: 8px;
  font-weight: 500;
}
.main-nav a.cta.primary {
  background: #26344B;
  color: #fff;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 9px 26px;
  box-shadow: 0 3px 12px rgba(38,52,75,0.07);
  border: 1.5px solid #BFA152;
  margin-left: 10px;
  transition: background 0.16s, box-shadow 0.18s, color 0.14s;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #BFA152;
  color: #26344B;
  box-shadow: 0 6px 22px rgba(191,161,82,0.17);
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(191,161,82,0.13);
  color: #BFA152;
}
.main-nav img {
  height: 38px;
  margin-right: 18px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #BFA152;
  color: #BFA152;
  font-size: 2.1rem;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 9999;
  transition: background 0.14s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #BFA152;
  color: #26344B;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #26344B;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.34s cubic-bezier(.4,0,.2,1), opacity 0.18s;
  opacity: 0.97;
  box-shadow: 0 0 32px rgba(38,52,75,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #BFA152;
  font-size: 2.5rem;
  padding: 16px 26px 6px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  padding: 12px 10px 12px 0;
  border-bottom: 1px solid rgba(191,161,82,0.13);
  border-radius: 0 14px 14px 0;
  margin-right: 26px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(191,161,82,0.24);
  color: #BFA152;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.95rem;
    padding: 14px 12px;
  }
  .main-nav a.cta.primary {
    margin-left: 5px;
    font-size: 0.97rem;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== HERO, FEATURES, SECTION LAYOUTS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 230px;
  box-shadow: 0 1px 8px rgba(38,52,75,0.05);
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 4px solid #BFA152;
}
.features-grid > div:hover {
  box-shadow: 0 6px 24px rgba(191,161,82,0.10);
  transform: translateY(-2px) scale(1.02);
}
.features-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #26344B;
  font-size: 1.08rem;
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta,
.cta.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 1ret;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 9px rgba(38,52,75,0.088);
  border: 1px solid #BFA152;
  transition: background 0.16s, color 0.20s, box-shadow 0.18s;
}
.cta.primary {
  background: #BFA152;
  color: #26344B;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #26344B;
  color: #fff;
  border-color: #BFA152;
  box-shadow: 0 8px 24px rgba(38,52,75,0.18);
}
.cta {
  background: #fff;
  color: #26344B;
  border: 1px solid #BFA152;
}
.cta:hover,
.cta:focus {
  background: #F5F6F6;
  color: #BFA152;
}

/* ===== ABOUT/INFO SECTIONS ===== */
.text-section {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 1px 7px rgba(38,52,75,0.03);
  margin-bottom: 18px;
}
.text-section strong {
  font-weight: 700;
  color: #BFA152;
}
.thanks-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 40px 0 20px 0;
}

/* ===== FOOTER STYLES ===== */
footer {
  background: #26344B;
  color: #fff;
  padding: 36px 0 20px 0;
  box-shadow: 0 -3px 16px rgba(38,52,75,0.05);
  margin-top: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #BFA152;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-size: 0.98rem;
  margin-top: 8px;
}
.footer-branding img {
  height: 32px;
  margin-bottom: 4px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(38,52,75,0.98);
  color: #fff;
  z-index: 3000;
  box-shadow: 0 -2px 16px rgba(38,52,75,0.09);
  padding: 24px 5vw 18px 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), opacity 0.25s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  padding: 8px 22px;
  border-radius: 8px;
  border: 1.5px solid #BFA152;
  background: #fff;
  color: #26344B;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.13s;
}
.cookie-btn.accept {
  background: #BFA152;
  color: #26344B;
  border: 1.5px solid #BFA152;
}
.cookie-btn.reject {
  background: #fff;
  color: #BFA152;
  border: 1.5px solid #BFA152;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #BFA152;
  color: #26344B;
  border: 1.5px solid #BFA152;
}
/* Cookie Preferences Modal */
.cookie-preferences-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 94vw;
  max-width: 420px;
  background: #fff;
  color: #26344B;
  z-index: 4000;
  border-radius: 18px;
  box-shadow: 0 4px 40px rgba(38,52,75,0.24);
  padding: 34px 26px 24px 26px;
  transform: translate(-50%, 90%);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.4,0,.2,1), opacity 0.24s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-preferences-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F5F6F6;
  padding: 11px 14px;
  border-radius: 7px;
  margin-bottom: 7px;
  font-size: 1rem;
}
.cookie-category-toggle {
  accent-color: #BFA152;
  width: 22px;
  height: 22px;
}
.cookie-category label {
  font-weight: 600;
  color: #26344B;
}
.cookie-category-essential {
  opacity: 0.7;
  font-style: italic;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 22px;
  right: 26px;
  color: #BFA152;
  font-size: 1.9rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #26344B;
}

/* ======= RESPONSIVE: FLEX & MOBILE ======= */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 20px;
    padding: 0;
  }
  .section {
    padding: 22px 8px;
  }
  section {
    padding: 28px 0;
    margin-bottom: 36px;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    gap: 13px;
    padding: 12px 8px;
  }
  .cta-group {
    gap: 12px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.09rem; }
  .features-grid > div, .card {
    padding: 18px 8px;
    min-width: 0;
  }
  .footer-branding img {
    height: 24px;
  }
  .cookie-consent-banner {
    padding-left: 3vw;
    padding-right: 3vw;
    font-size: 0.97rem;
  }
  .cookie-preferences-modal {
    padding: 14px 5px 12px 10px;
  }
}

/* ====== MICRO-INTERACTIONS ====== */
.cta.primary, .cta, .cookie-btn {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, border 0.13s;
}
.card, .features-grid > div, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.20s;
}
.cta:active, .cta.primary:active {
  transform: scale(0.97);
}
.mobile-menu {
  transition: transform 0.34s cubic-bezier(.4,0,.2,1), opacity 0.25s;
}

/* ====== OTHER BASE STYLES ====== */
::-webkit-scrollbar {
  width: 8px;
  background: #ECECEC;
}
::-webkit-scrollbar-thumb {
  background: #BFA152;
  border-radius: 8px;
}
::selection {
  background: #BFA15266;
}

/* ====== UTILITY ====== */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center !important; }

/* ====== LUXURY PREMIUM DETAILS ====== */
body, .card, .features-grid > div, .testimonial-card, .section, .text-section {
  /* Subtle gold border bottom/shadow for luxury detail */
  box-shadow: 0 1.5px 9px rgba(38,52,75,0.07), 0 4px 0 -2px #BFA15211;
}
h1, h2, h3 {
  letter-spacing: 0.01em;
}
.cta.primary, .card, .features-grid > div, .testimonial-card {
  border-bottom: 3px solid #BFA152;
}

/* ======= ACCESSIBILITY ======= */
:focus {
  outline: 2px solid #BFA152;
  outline-offset: 2px;
}

