/* CSS RESET & BASELINE ------------------------------------------ */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #f4f5f7;
  color: #19304e;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #19304e;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,0,.1,1);
}
a:hover, a:focus {
  color: #d8a439;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* TYPOGRAPHY ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: #19304e;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li, span {
  font-size: 1rem;
  color: #19304e;
}
pos {
  font-size: 1.1rem;
  color: #110920;
}
.text-section {
  margin-bottom: 28px;
}
strong {
  color: #d8a439;
  font-weight: 700;
}
.price {
  background: #d8a439;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 14px;
  margin-left: 14px;
  display: inline-block;
}
/* BUTTONS */
.btn-primary,
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  box-shadow: 0 3px 14px rgba(28,54,90,0.07);
  margin-top: 16px;
}
.btn-primary {
  background: #19304e;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(21,29,70,0.17);
}
.btn-primary:hover, .btn-primary:focus {
  background: #d8a439;
  color: #19304e;
  box-shadow: 0 7px 24px 0 rgba(216,164,57,0.22);
}
.btn-secondary {
  background: #fff;
  color: #19304e;
  border: 2px solid #19304e;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #19304e;
  color: #fff;
  border-color: #d8a439;
}
/* STRUCTURE & LAYOUT ----------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 18px 0 rgba(25,48,78,0.07);
  transition: box-shadow 0.22s cubic-bezier(.42,0,.62,1);
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 0 6px;
  }
  section {
    padding: 26px 6px;
    margin-bottom: 42px;
  }
}
@media (max-width: 520px) {
  section {
    padding: 14px 2px;
    margin-bottom: 30px;
  }
}
/* HEADER & NAVIGATION ---------------------------- */
header {
  width: 100%;
  background: #19304e;
  box-shadow: 0 2px 18px 0 rgba(28,54,90,0.16);
  position: sticky;
  top: 0;
  z-index: 100;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  position: relative;
  padding: 2px 6px;
}
header nav a:hover, header nav a:focus {
  color: #d8a439;
  text-decoration: none;
}
header .btn-primary {
  margin-top: 0;
  margin-left: 14px;
  font-size: 1rem;
  padding: 10px 22px;
  background: #d8a439;
  color: #19304e;
  border: none;
}
header .btn-primary:hover, header .btn-primary:focus {
  background: #fff;
  color: #d8a439;
  box-shadow: 0 4px 12px 0 rgba(216,164,57,0.22);
}
/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: #d8a439;
  color: #19304e;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 8px 18px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  align-self: center;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: #d8a439;
  outline: 2px solid #d8a439;
}
/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 320px;
  background: #19304e;
  box-shadow: -2px 0 36px 0 rgba(17,48,78,0.16);
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.65,0,.35,1);
  z-index: 2222;
  padding: 26px 24px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 48px 0 rgba(25,48,78,0.25);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #d8a439;
  font-size: 2rem;
  margin-bottom: 18px;
  margin-right: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,245,247,0.09);
  transition: color 0.16s background 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #d8a439;
  background: rgba(216,164,57,0.07);
}
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
/* MAIN, FLEX UTILITY GRIDS ---------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(25,48,78,0.10);
  transition: box-shadow 0.17s;
  padding: 28px 20px;
  flex: 1 1 270px;
  min-width: 230px;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(216,164,57,0.14);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4f5f7;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(25,48,78,0.07);
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  color: #212d46;
  border-left: 6px solid #d8a439;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(216,164,57,0.11);
}
.testimonial-card p {
  color: #2d323d;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 0 0;
  flex: 1 1 60%;
  line-height: 1.45;
}
.testimonial-card span {
  font-size: 1rem;
  color: #5a5a72;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #f4f5f7;
  border-radius: 16px;
  padding: 24px 16px 18px;
  box-shadow: 0 1px 8px 0 rgba(25,48,78,0.06);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 18px 0 rgba(216,164,57,0.08);
}
.feature-grid img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.team-bio-snippet {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(25,48,78,0.10);
  padding: 26px 18px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s;
  border-left: 4px solid #d8a439;
}
.team-bio-snippet h2 {
  font-size: 1.32rem;
  color: #19304e;
  margin-bottom: 6px;
}
.team-bio-snippet ul {
  margin-left: 22px;
  font-size: 1rem;
  color: #19304e;
}
.footer-logo img {
  height: 54px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 1rem;
  color: #fff;
}
footer {
  width: 100%;
  background: #19304e;
  padding: 38px 0 20px 0;
  color: #fff;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
footer a {
  color: #f4f5f7;
  font-size: 1rem;
  transition: color 0.13s;
}
footer a:hover, footer a:focus {
  color: #d8a439;
  text-decoration: underline;
}
@media (max-width: 950px) {
  .feature-grid, .team-list, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-grid > div,
  .team-bio-snippet,
  .card {
    min-width: 150px;
    flex: 1 1 130px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .team-bio-snippet {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
}
/* SPACING SYSTEM ----------------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .team-list, .content-grid {
  gap: 24px;
}
.card, .team-bio-snippet {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  gap: 15px;
}
ul, ol {
  margin-bottom: 12px;
}
li {
  margin-bottom: 5px;
}
/* FORM ELEMENTS ------------------------------------- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #d8a439;
  background: #fff;
  padding: 10px 14px;
  margin-bottom: 12px;
  transition: border 0.18s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #19304e;
  box-shadow: 0 0 0 2px #d8a43955;
}
button:focus{
  outline: none;
  border-color: #d8a439;
}
/* ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .mobile-menu, .mobile-menu-toggle, .card, .feature-grid > div, .team-bio-snippet {
  transition: background 0.25s, color 0.18s, box-shadow 0.22s, transform 0.13s;
}
.card:hover, .team-bio-snippet:hover, .feature-grid > div:hover {
  box-shadow: 0 7px 32px 0 rgba(216,164,57,0.16);
  transform: translateY(-2px) scale(1.025);
}
/* VIBRANT & ENERGETIC EFFECTS --------------------- */
.card, .team-bio-snippet, .feature-grid > div {
  border-left: 4px solid #d8a439;
  position: relative;
}
.card::after, .feature-grid > div::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d8a43933;
  z-index: 2;
}
.team-bio-snippet::after{
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8a43922;
  z-index: 1;
}
.testimonial-card {
  border-left: 6px solid #d8a439;
  background: #fff;
  color: #212d46;
}
.testimonial-card p, .testimonial-card span {
  color: #19304e;
}
/* RESPONSIVE FONT SIZER -------------------------- */
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
  .btn-primary, .btn-secondary { font-size: 0.92rem; padding: 10px 18px; }
}
/* COOKIE CONSENT BANNER --------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #19304e;
  color: #fff;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  box-shadow: 0 -2px 18px 0 rgba(25,48,78,0.16);
  gap: 18px;
  transition: transform 0.32s cubic-bezier(.65,0,.35,1), opacity 0.16s;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  font-size: 1rem;
  max-width: 410px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: #d8a439;
  color: #19304e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 10px 24px;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.13s, color 0.12s, box-shadow 0.17s;
  box-shadow: 0 3px 15px 0 rgba(216,164,57,0.08);
}
.cookie-btn.settings {
  background: #fff;
  color: #d8a439;
  border: 2px solid #d8a439;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #d8a439;
  box-shadow: 0 6px 15px 0 rgba(216,164,57,0.16);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #d8a439;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 4px;
  }
  .cookie-banner .cookie-text {
    max-width: 100%;
  }
}
/* COOKIE MODAL ------------------------------------ */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%) scale(1);
  background: #fff;
  color: #19304e;
  border-radius: 16px;
  box-shadow: 0 13px 40px 0 rgba(25,48,78,0.24);
  padding: 36px 24px 24px 24px;
  width: 98vw;
  max-width: 390px;
  z-index: 3002;
  opacity: 1;
  transition: opacity 0.18s, transform 0.24s cubic-bezier(.65,0,.35,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.95);
}
.cookie-modal .modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-modal .modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #d8a439;
  font-size: 1.7rem;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.12s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #19304e;
}
.cookie-toggle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.cookie-toggle-row:last-child {
  margin-bottom: 0;
}
.cookie-toggle-label {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  flex: 1 1 60%;
}
.cookie-toggle {
  appearance: none;
  width: 48px;
  height: 24px;
  border-radius: 16px;
  background: #d8a43933;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: #d8a439;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px #ccc5;
  transition: left 0.14s;
}
.cookie-toggle:checked::before {
  left: 27px;
}
.category-essential {
  color: #b4b7c2;
}
@media(max-width: 500px){
  .cookie-modal {
    padding: 20px 5px 18px 5px;
    max-width: 99vw;
  }
}
/* UTILITIES & MISC ------------------------------- */
.hide { display: none !important; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.font-display { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; }
.font-body { font-family: 'Open Sans', Arial, sans-serif; font-weight: 400; }
/* VIBRANT/ENERGETIC EXTRAS ---------------------- */
.btn-primary, .btn-secondary, .cookie-btn {
  box-shadow: 0 2px 18px 0 #d8a43929;
  text-shadow: 0 2px 6px #b4b7c222;
  letter-spacing: 0.01em;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active{
  transform: scale(0.97);
}
@media (max-width: 520px) {
  footer {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px 0 8px 0;
  }
}
::-webkit-input-placeholder { color: #7886a4; opacity: 1; }
::-moz-placeholder { color: #7886a4; opacity: 1; }
:-ms-input-placeholder { color: #7886a4; opacity: 1; }
::placeholder { color: #7886a4; opacity: 1; }
