/* 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAFAFA;
  color: #1B4462;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B4462;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9B96C;
  outline: none;
}
ul, ol {
  list-style-type: none;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  background: none;
  cursor: pointer;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B4462;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  margin-bottom: 18px;
}
p, li, cite, blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: #253b52;
}
strong {
  color: #1B4462;
}
blockquote {
  font-style: italic;
  color: #1B4462;
  border-left: 4px solid #D9B96C;
  padding-left: 16px;
  margin: 0 0 12px 0;
}
cite {
  display: block;
  color: #1B4462;
  font-size: 0.95rem;
  margin-top: 8px;
  font-style: normal;
}

/* BRAND COLORS */
:root {
  --primary: #1B4462;
  --secondary: #D9B96C;
  --accent: #FAFAFA;
  --surface: #ffffff;
  --shadow: rgba(27, 68, 98, 0.12);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif; 
}

/* FLEXBOX CONTAINER DEFAULTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  background: var(--surface);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  box-shadow: 0 8px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  background: var(--surface);
  margin-bottom: 60px;
  padding: 40px 24px;
  border-radius: 20px;
  box-shadow: 0 3px 12px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #D9B96C 0%, #1B4462 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 56px;
  padding: 36px 0 48px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  color: #fff;
  font-weight: 900;
  font-family: var(--font-display);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(27,68,98,0.12);
}
.hero p {
  color: #f5f5f5;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .cta-btn {
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(217, 185, 108, 0.18);
}

/* NAVIGATION & HEADER */
header {
  background: var(--surface);
  box-shadow: 0 1px 18px rgba(27,68,98,.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  max-width: 162px;
  margin-right: 32px;
  display: flex;
  align-items: center;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
  gap: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  padding: 12px 6px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus,
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--secondary);
  color: #1B4462;
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: bold;
  padding: 12px 30px;
  font-size: 1.12rem;
  border-radius: 28px;
  margin-left: 16px;
  box-shadow: 0 2px 12px rgba(27, 68, 98, 0.05);
  transition: background .18s, color .18s, box-shadow .24s;
  border: none;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1B4462;
  color: #fff;
  box-shadow: 0 4px 22px rgba(27, 68, 98, 0.16);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: relative;
  margin-left: 16px;
  font-size: 2.1rem;
  color: var(--primary);
  background: none;
  border: none;
  z-index: 300;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background: #1B4462;
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 350px;
  height: 100%;
  z-index: 999;
  padding: 32px 0 0 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.88, .04, .15, 1);
  box-shadow: -2px 0 32px 0 rgba(27, 68, 98, 0.18);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  padding: 8px 16px;
  margin-bottom: 36px;
  margin-right: 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color .15s;
  z-index: 1002;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #FAFAFA;
  font-family: var(--font-display);
  font-size: 1.22rem;
  padding: 13px 0 13px 0;
  border-bottom: 1px solid rgba(217, 185, 108, 0.18);
  transition: color 0.19s;
  border-radius: 0;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #D9B96C;
}

/* RESPONSIVE HEADER */
@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }
  .header .container {
    gap: 10px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo {
    max-width: 135px;
    margin-right: 18px;
  }
  header .container {
    gap: 8px;
    padding: 14px 12px 14px 12px;
  }
  .container {
    padding: 0 6vw;
  }
}

/* CONTENT & LIST STYLES */
ul li, .content-wrapper ul li {
  margin-bottom: 19px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
  color: #253B52;
}
ul li img {
  width: 28px;
  min-width: 28px;
  margin-right: 10px;
}
.content-wrapper ul li:last-child {
  margin-bottom: 0;
}

/* CARDS AND FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.card {
  background: var(--surface);
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--shadow);
  position: relative;
  min-width: 230px;
  flex: 1 1 300px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .18s, transform .21s;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(27,70,98,0.18);
  transform: translateY(-4px) scale(1.02);
}

.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: var(--accent);
  border-radius: 13px;
  padding: 20px 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow);
}

.testimonial-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px var(--shadow);
  transition: box-shadow .15s, transform .14s;
  color: #1B4462;
  max-width: 600px;
}
.testimonial-card .stars {
  font-size: 1.35rem;
  color: #D9B96C;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(27,68,98,0.06);
  font-family: var(--font-display);
  margin-bottom: 5px;
}
.testimonial-card blockquote {
  color: #1B4462;
  font-family: var(--font-body);
  font-size: 1.11rem;
  background: none;
  padding-left: 0;
  margin-bottom: 6px;
  border: none;
}
.testimonial-card cite {
  color: #44688e;
  font-weight: bold;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.01rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(217,185,108,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* FOOTER */
footer {
  background: #1B4462;
  color: #fff;
  padding: 46px 0 20px 0;
  margin-top: 42px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-nav a {
  color: #D9B96C;
  font-family: var(--font-display);
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  transition: color .18s, background .18s;
  border-radius: 8px;
  padding: 5px 0px;
}
.footer-contact p {
  font-size: 0.97rem;
  color: #fafafa;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.footer-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 28px 0 13px 0;
  }
  .footer-contact p {
    font-size: 0.91rem;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #1B4462;
  color: #fff;
  box-shadow: 0 -3px 16px rgba(27,68,98,0.14);
  padding: 26px 14px 18px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  font-size: 1.03rem;
  font-family: var(--font-body);
  transition: transform .44s cubic-bezier(.57,1.2,.45,1), opacity .33s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 3 1 250px;
  margin-right: 16px;
  min-width: 132px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 23px;
  border-radius: 20px;
  font-weight: 600;
  border: none;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  cursor: pointer;
  font-size: 1rem;
  transition: background .18s, color .18s;
}
.cookie-btn.accept {
  background: #D9B96C;
  color: #1B4462;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #c4a35c;
}
.cookie-btn.reject {
  background: #fff;
  color: #1B4462;
  border: 2px solid #D9B96C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e9e8e0;
  color: #1B4462;
}
.cookie-btn.settings {
  background: transparent;
  color: #D9B96C;
  border: 2px solid #D9B96C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #D9B96C;
  color: #1B4462;
}

/* COOKIE MODAL */
.cookie-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(27,68,98, 0.36);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal-bg.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #1B4462;
  border-radius: 18px;
  box-shadow: 0 7px 30px rgba(27,68,98,0.19);
  padding: 34px 26px 30px 26px;
  min-width: 292px;
  max-width: 96vw;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.25rem;
  color: #1B4462;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: color .11s;
}
.cookie-modal .modal-close:hover {
  color: #D9B96C;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1B4462;
}
.cookie-category input[type=checkbox] {
  accent-color: #D9B96C;
  width: 20px;
  height: 20px;
}
.cookie-category input[disabled] {
  opacity: 0.70;
}
.cookie-category.essential label {
  font-weight: bold;
  color: #1B4462;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}

/* ARTISTIC & CREATIVE EFFECTS */
h1, h2, h3, .cta-btn, .stars {
  /* Artistic, energetic typeface for creative feel */
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}
.content-wrapper, .card, .testimonial-card, .section, .feature-item {
  position: relative;
}
.content-wrapper:before, .testimonial-card:before {
  /* Decors: Artistic playful blobs */
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 32% 68% 64% 36% / 52% 48% 52% 48%;
  width: 86px;
  height: 65px;
  opacity: 0.07;
  top: -30px;
  right: -30px;
  background: #D9B96C;
  pointer-events: none;
}
.testimonial-card:before {
  left: -24px;
  top: 10px;
  right: auto;
  background: #1B4462;
  opacity: 0.08;
  width: 49px;
  height: 49px;
  border-radius: 55% 45% 74% 26% / 38% 70% 30% 62%;
}

/* ICONS */
ul li img {
  filter: drop-shadow(0 1px 2px #cfd8dc11); /* Subtle shadow */
}

/* MICRO-INTERACTIONS ON BUTTONS */
.cta-btn, .cookie-btn {
  transition: background .19s, color .19s, box-shadow .19s, transform .17s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* TABLET & MOBILE RESPONSIVE RULES */
@media (max-width: 1220px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 32px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper,
  .text-section {
    padding: 26px 7px;
    margin-bottom: 42px;
    border-radius: 14px;
  }
  .hero {
    padding: 26px 0 25px 0;
    margin-bottom: 38px;
    border-radius: 0 0 18px 18px;
  }
  .card-container {
    gap: 15px;
  }
  .testimonial-card {
    margin-bottom: 15px;
    padding: 13px 7px;
    border-radius: 10px;
  }
  .feature-item {
    padding: 12px 6px;
  }
}
@media (max-width: 575px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.17rem; }
}

/* FLEX DIRECTION RESPONSES */
@media (max-width: 900px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* FORMS (if present) */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #d2dbe3;
  padding: 10px 12px;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.18s;
  outline: none; 
}
input:focus, textarea:focus, select:focus {
  border-color: #D9B96C;
}

/* Misc. Spacing fixes for last children */
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

.section:last-child, .content-wrapper:last-child {
  margin-bottom: 20px;
}

/* Utilities */
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}
.text-center {
  text-align: center !important;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* Hide banner/modal on print */
@media print {
  .cookie-banner, .cookie-modal-bg { display: none !important; }
  header, footer { box-shadow: none !important; }
}

/* ACCESSIBILITY HELPERS */
:focus {
  outline: 2px solid #D9B96C;
  outline-offset: 2px;
}

/* END */