/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #F9F6F0;
}

body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #254872;
  line-height: 1.7;
  background-color: #F9F6F0;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #6B86B8;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #B7985B;
}
ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #254872;
  line-height: 1.18;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
}

/* FONT: body */
p, li, span, label {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #254872;
  font-size: 1rem;
}

strong { font-weight: bold; color: #B7985B; font-family: 'Montserrat', Arial, Helvetica, sans-serif;}

/* CONTAINER + CONTENT */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 800px;
  background: rgba(255,255,255,.85);
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(188, 183, 204, 0.08), 0 1.5px 3px rgba(188,183,204,0.15);
  padding: 32px 24px;
  margin-bottom: 36px;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #F5ECE0 0%, #ECFBFC 100%);
  border-radius: 26px;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
    border-radius: 17px;
  }
}

/* FLEXBOX LAYOUTS */
.card-container, .content-grid, .features, .contact-details, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container { gap: 24px; }
  
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(188, 183, 204, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  min-width: 240px;
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f9f6f0;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(178, 193, 208, 0.05);
  padding: 20px 28px 18px 28px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 600px;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-style: italic;
  color: #254872;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #9695a6;
}
.testimonial-card img {
  height: 24px;
  width: 24px;
  vertical-align: middle;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #ffffffbb;
  border-radius: 13px;
  padding: 18px 17px;
  box-shadow: 0 1.5px 5px rgba(179, 152, 91, 0.09);
}

/* HEADER + NAVIGATION */
header {
  background: linear-gradient(90deg, #ffe5ec 0%, #f1f5fc 100%);
  box-shadow: 0 3px 16px 0 rgba(179, 152, 91, 0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
  margin-left: auto;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #254872;
  background: transparent;
  padding: 5px 10px;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}
header nav a.cta {
  color: #fff;
  background: #B7985B;
  font-weight: bold;
  box-shadow: 0 3px 16px 0 rgba(179, 152, 91, 0.09);
  padding: 8.5px 22px;
  margin-left: 8px;
  border-radius: 13px;
  transition: background 0.22s, color .21s, box-shadow .22s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #254872;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(37, 72, 114, 0.12);
}
header nav a:hover, header nav a:focus {
  background: #eaf6fa;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 18px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #B7985B;
  cursor: pointer;
  padding: 0 10px;
  margin-left: 18px;
  z-index: 90;
  transition: color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #254872;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 120;
  background: linear-gradient(108deg, #f8f7fc 80%, #ffe3e0 100%);
  box-shadow: 0 3px 42px rgba(37,72,114,0.13);
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .42s cubic-bezier(.77,0,.18,1), opacity .3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #B7985B;
  padding: 18px 18px 4px 18px;
  margin-top: 8px;
  margin-right: 3px;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #254872;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #254872;
  padding: 8px 0 5px 4px;
  border-radius: 7px;
  transition: background 0.17s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #f6eadb;
  color: #B7985B;
}

@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* MAIN & SECTION */
main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 56vh;
  padding-bottom: 36px;
}
section {
  margin-bottom: 36px;
  padding: 0;
}

/* BUTTONS, CTA */
.cta, .button, button, input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  border-radius: 12px;
  padding: 11px 28px;
  background: #B7985B;
  color: #fff;
  transition: background .21s, box-shadow .18s, color .16s;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(179,152,91,0.06);
  margin-top: 14px;
  text-decoration: none;
}
.cta:hover, .cta:focus {
  background: #254872;
  color: #fff;
  box-shadow: 0 0 22px #b7985b33;
}
.button[disabled], .cta[disabled] {
  opacity: .65;
  pointer-events: none;
}

/* LISTS, ICONS */
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #254872;
}
ul li:last-child { margin-bottom: 0; }
li img {
  height: 26px;
  width: 26px;
  margin-right: 4px;
}

/* TEXT SECTIONS */
.text-section {
  padding: 8px 0;
}
.text-section p {
  color: #67708b;
  font-size: 1.01rem;
  font-style: italic;
}

/* FOOTER */
footer {
  background: linear-gradient(95deg, #e4eef8 0%, #fff 100%);
  padding: 32px 0 25px 0;
  border-top: 1.5px solid #e8e4e7;
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 9px;
}
footer nav a {
  color: #B7985B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
footer nav a:hover { color: #254872; }
footer img {
  height: 44px;
  width: auto;
}
footer .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
footer .contact-details span, footer .contact-details div {
  display: flex;
  align-items: center;
  font-size: 0.97rem;
  color: #6B86B8;
  gap: 8px;
}
footer p {
  color: #acacce;
  font-size: .95rem;
  margin-top: 6px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .content-wrapper { padding: 24px 9px; }
}
@media (max-width: 650px) {
  .container {
    padding: 0 6vw;
  }
  .content-wrapper {
    border-radius: 13px;
  }
  main {
    gap: 17px;
  }
}
@media (max-width: 600px) {
  .content-wrapper { padding: 14px 4px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
  footer .contact-details { gap: 8px 8px; }
  footer .container { gap: 7px; }
}

/* CARD AND TESTIMONIALS ALIGNMENT */
.card-container, .content-wrapper, .testimonial-card, .card {
  margin-bottom: 20px;
}
.card {
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 340px;
}

/* MICRO-INTERACTIONS & EFFECTS */
.card, .testimonial-card, .content-wrapper {
  transition: box-shadow .23s, transform .18s;
}
.card:hover, .testimonial-card:hover, .content-wrapper:hover {
  box-shadow: 0 10px 36px 0 rgba(179,152,91,0.18), 0 2px 8px #b7985b20;
  transform: translateY(-3px) scale(1.0205);
}

/* MODALS: COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe5;
  box-shadow: 0 -5px 24px rgba(37,72,114,.07),0 0.5px 2px #b7985b15;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  padding: 24px 22px 18px 22px;
  z-index: 200;
  border-radius: 20px 20px 0 0;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity .24s, transform .41s cubic-bezier(.68,-0.13,.32,1.09);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner-text {
  color: #50463d;
  flex: 2 1 380px;
  font-size: 1.08rem;
  padding-bottom: 7px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .button, .cookie-banner button {
  font-size: 1rem;
  padding: 8px 19px;
  border-radius: 8px;
  margin: 0;
}
.cookie-banner .accept {
  background: #B7985B;
  color: white;
  font-weight: bold;
}
.cookie-banner .accept:hover {
  background: #254872;
}
.cookie-banner .reject {
  background: #e7edfc;
  color: #254872;
}
.cookie-banner .settings {
  background: #fff;
  border: 1px solid #B7985B;
  color: #B7985B;
}
.cookie-banner .settings:hover { background: #f5ece0; color: #254872; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 7px 12px 7px;
    border-radius: 10px 10px 0 0;
    font-size: .97rem;
  }
  .cookie-banner-actions { gap: 9px; }
  .cookie-banner-text { font-size: .94rem; }
}

.cookie-modal-backdrop {
  position: fixed;
  left:0; top:0;
  width: 100vw; height: 100vh;
  background: rgba(33,44,66,.18);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60%) scale(.98);
  background: #fffbe5;
  border-radius: 20px;
  box-shadow: 0 12px 32px 0 rgba(37,72,114,0.08), 0 2px 6px rgba(188,183,204,0.12);
  padding: 35px 32px 28px 32px;
  min-width: 330px;
  max-width: 96vw;
  z-index: 520;
  opacity: 0;
  pointer-events: none;
  transition: opacity .27s, transform .49s cubic-bezier(.68,-0.13,.32,1.09);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 13px;
  color: #254872;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .99rem;
}
.cookie-category label {
  flex: 1 1 auto;
  font-weight: 500;
}
.cookie-category .toggle {
  width: 40px; height: 22px;
  background: #ecf2ff;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .15s;
  border: 1.5px solid #B7985B;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.cookie-category .toggle .slider {
  position: absolute;
  left: 2.4px; top: 2.4px;
  width: 17px; height: 17px;
  background: #B7985B;
  border-radius: 50%;
  transition: transform .21s, background .17s;
}
.cookie-category .toggle input:checked + .slider {
  transform: translateX(16px);
  background: #254872;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 7px;
}
.cookie-modal button {
  font-size: 1rem; padding: 8px 16px; border-radius: 8px;
}
.cookie-modal .accept { background: #B7985B; color: #fff; font-weight: bold; }
.cookie-modal .accept:hover { background: #254872; }
.cookie-modal .reject { background: #e7edfc; color: #254872; }
.cookie-modal .close { background: #fff; border: 1px solid #B7985B; color: #B7985B; }
.cookie-modal .close:hover { background: #f6ecd7; color: #254872; }
.cookie-description {
  font-size: 0.94rem; color: #7e8f9f; margin-left: 10px;
}

/* FORM ELEMENTS */
input, select, textarea {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #f5f6fa;
  padding: 9px 15px;
  border: 1.5px solid #bfd1eb;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .23s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B7985B;
}
label {
  font-size: .97rem;
  margin-bottom: 6px;
  color: #254872;
  display: block;
}

/* ACCESSIBILITY & FOCUS */
a:focus, button:focus, .cta:focus, input:focus, select:focus, textarea:focus {
  outline: 2px dashed #B7985B;
  outline-offset: 2px;
}

/* DREAMY PASTEL MOOD! */
body, .content-wrapper, .section, .card, .testimonial-card {
  background-color: #F9F6F0;
}
.card, .testimonial-card {
  background-color: #fff;
  box-shadow: 0 2px 16px 0 rgba(148, 156, 181, 0.08);
}
.section {
  background: linear-gradient(135deg, #feece2 0%, #e4f1ff 100%);
}
@media (max-width:500px){ 
  .card, .testimonial-card {
    padding: 12px 8px;
    border-radius: 13px;
  }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: #eaf7f4;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #d4cbe7;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c1c6e6;
}

/* EASY HIEROARCHY */
hr {
  border: none;
  border-top: 1.5px solid #ece9f0;
  margin: 20px 0;
}

/* UTILITY CLASSES */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* ENSURE NO OVERLAPS */
.card, .testimonial-card, .feature-item, .content-wrapper, .section {
  margin-bottom: 24px;
}

/* CODE ENDS: All pages flexbox, soft pastel, responsive, smooth, accessible styles */
