/* RESET & BASE TYPOGRAPHY ------------------------------------------------------------ */
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, 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, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #242F49;
  background: #EAECEF;
  font-size: 16px;
  min-height: 100vh;
}

/* FONTS (Display/Body) -------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #242F49;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.625rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, dl { font-size: 1rem; margin-bottom: 16px;  }
.subheadline { font-family: 'Roboto', Arial, sans-serif; font-size: 1.125rem; color: #8B7154; margin-bottom: 24px; line-height:1.6; font-weight: 400; }

strong { color: #242F49; font-weight: 600; }
em { color: #F4B942; font-style:normal; font-weight:500; }


/* CONTAINER & LAYOUT ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.content-wrapper {
  background: #fff; 
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 5px 16px 0 rgba(75,62,26,0.08);
  margin-bottom: 40px;
}

/* Spacing patterns & section rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(75,62,26,0.06);
  padding: 20px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(244,185,66,0.18);
  transform: translateY(-2px);
}
.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: #fffbe7;
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px 0 rgba(244,185,66,0.22);
  flex-wrap: wrap;
  transition: box-shadow 0.19s;
}
.testimonial-card blockquote {
  color: #242F49;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  line-height: 1.5;
  margin-right: 8px;
  margin-bottom: 8px;
}
.testimonial-details span {
  color: #8B7154;
  font-size: 0.96rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* HERO & BANNERS ------------------------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #F4B942 12%, #FFE8BE 100%);
  border-radius: 0px 0px 40px 40px;
  box-shadow: 0 4px 40px 0 rgba(244,185,66,0.08);
  margin-bottom: 56px;
  padding-top: 48px;
  padding-bottom: 56px;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  text-align: center;
  padding: 0 12px;
  margin-bottom: 0;
}
.hero h1 {
  color: #242F49;
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}


/* BUTTONS & LINKS ------------------------------------------------------------------ */
.cta-btn,
button.cta-btn {
  padding: 13px 34px;
  background-color: #F4B942;
  color: #242F49;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 6px 0 rgba(244,185,66,0.14);
  transition: background 0.19s, color 0.19s,box-shadow 0.25s, transform 0.15s;
  cursor: pointer;
  margin-top: 18px;
  display: inline-block;
}
.cta-btn:focus,
.cta-btn:hover {
  background-color: #242F49;
  color: #F4B942;
  box-shadow: 0 6px 22px 0 rgba(244,185,66,0.19);
  outline: none;
  transform: translateY(-2px);
}

a {
  color: #F4B942;
  text-decoration: underline;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #C38819;
  text-decoration: none;
}


/* MAIN NAVIGATION ------------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1.5px solid #EAECEF;
  box-shadow: 0 2px 16px 0 rgba(36,47,73,0.07);
  padding: 0;
  z-index: 1000;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
header img {
  height: 48px;
  vertical-align: middle;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #242F49;
  font-weight: 500;
  background: none;
  padding: 10px 0px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #F4B942;
  background: #fffbe7;
}

/* --- Burger Button --- */
.mobile-menu-toggle {
  display: none;
  padding: 9px 13px;
  background: #F4B942;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  color: #242F49;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(244,185,66,0.09);
  line-height: 1;
  transition: background 0.19s;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #242F49;
  color: #F4B942;
}

/* --- Mobile Slide-in Navigation --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,47,73,0.93);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.6,.56,0,1.02);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin-top: 28px;
  margin-right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.18s;
  border-radius: 50%;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F4B942;
  background: rgba(244,185,66,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  padding-left: 40px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 0;
  transition: color 0.18s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B942;
  background: none;
}

/* Show/Hide nav on breakpoint */
@media (max-width: 1025px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: #242F49;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 18px;
  margin-top: 64px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 36px 0 rgba(36,47,73,0.10);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer-logo-address {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-logo-address img { width: 54px; margin-bottom: 8px; }
.footer-logo-address p {
  color: #FFE8BE;
  font-size: 0.96rem;
  line-height: 1.54;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a,
.footer-links a {
  color: #F4B942;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.19s;
  border-radius: 5px;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-links a:hover { color: #fffbe7; background: rgba(244,185,66,0.08); }
footer .copyright {
  margin-top: 20px;
  text-align: center;
  color: #EAECEF;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* PAGES: SERVICE LISTS & FEATURES --------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.feature-grid li {
  flex: 1 1 200px;
  background: #fffbe7;
  border-radius: 14px;
  box-shadow: 0 2px 7px 0 rgba(244,185,66,0.10);
  padding: 17px 18px;
  margin-bottom: 0;
  color: #242F49;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  transition: box-shadow 0.14s;
}
.feature-grid li img {
  height: 36px;
  width: 36px;
  margin-right: 6px;
  flex-shrink: 0;
}
.feature-grid li span {
  display: block;
  color: #8B7154;
  font-size: 0.99rem;
  margin-top: 6px;
}
.feature-grid li:hover {
  box-shadow: 0 8px 20px 0 rgba(244,185,66,0.19);
}
.service-list {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #242F49;
}
.service-list li {
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(244,185,66,0.08);
  border-radius: 10px;
  padding: 16px 16px 14px 16px;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.13s, background 0.13s;
}
.service-list li:hover { background: #fffbe7; box-shadow: 0 6px 20px 0 rgba(244,185,66,0.11); }


/* GENERAL TEXT SECTION ------------------------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 8px;
  line-height: 1.54;
  padding-left: 0px;
}
.text-section h2 { margin-bottom: 8px; }
.text-section h3 { margin-bottom: 7px; font-size: 1.13rem; color: #F4B942; }

/* OL, UL styles */
.text-section ul {
  list-style: disc inside;
}
.text-section ol {
  list-style: decimal inside;
}
.text-section dl {
  margin-bottom: 12px;
}
.text-section dt {
  font-weight: 600;
  color: #242F49;
  margin-top: 12px;
}
.text-section dd {
  color: #8B7154;
  margin-left: 0;
  margin-bottom: 6px;
  margin-top: 2px;
}

.text-section a { color: #242F49; text-decoration: underline; }
.text-section a:hover { color: #F4B942; }

/* CONTACT DETAILS LIST ------------------------------------------------------------- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  font-size: 1.11rem;
  color: #242F49;
}
.contact-details ul img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}


/* FAQ & Simple Sections ------------------------------------------------------------ */
.faq dl {
  margin-bottom: 0;
}
.faq dt,
.faq dd {
  padding: 4px 0;
}


/* CTA BANNER ----------------------------------------------------------------------- */
.cta {
  margin: 44px 0;
}

.cta .cta-btn {
  font-size: 1.21rem;
}


/* RESPONSIVE ------------------------------------------------------------- */
@media (max-width: 1025px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .footer-main {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2.2rem; }
  .content-wrapper { padding: 22px 8px; }
}
@media (max-width: 700px) {
  .hero { padding-top: 24px; padding-bottom: 25px; border-radius: 0 0 20px 20px; }
  .hero h1 { font-size: 1.48rem; }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 16px 11px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .footer-main {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 500px) {
  .container {
    max-width: 100vw;
    padding: 0 2px;
  }
  .content-wrapper{ padding: 12px 2px; }
  .hero h1 { font-size: 1.12rem; }
}


/* ANIMATIONS & TRANSITIONS --------------------------------------------------------- */
.cta-btn, .main-nav a, .footer-nav a, .footer-links a, .mobile-menu-toggle, .mobile-menu-close, .card, .feature-grid li {
  transition: box-shadow 0.18s, background 0.16s, color 0.14s, transform 0.14s;
}

.testimonial-card {
  animation: fadeInTestimonial .7s ease;
}
@keyframes fadeInTestimonial {
  0% { opacity:0; transform:translateY(32px); }
  80% { opacity:0.6; }
  100% { opacity:1; transform:translateY(0); }
}

.mobile-menu.open {
  animation: slideInMenu .29s cubic-bezier(.6,.56,0,1.02);
}
@keyframes slideInMenu {
  from {transform:translateX(100%); }
  to {transform:translateX(0); }
}
.mobile-menu:not(.open) {
  animation: slideOutMenu .24s cubic-bezier(.47,.94,.73,.66);
}
@keyframes slideOutMenu {
  from {transform:translateX(0); }
  to {transform:translateX(100%); }
}


/* COOKIE CONSENT BANNER & MODAL ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fffbe7;
  color: #242F49;
  box-shadow: 0 -2px 28px 0 rgba(244,185,66,0.15);
  border-top: 3px solid #F4B942;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1700;
  padding: 24px 17px 17px 17px;
  gap: 13px;
  font-size: 1rem;
  transition: transform 0.32s, opacity 0.16s;
  border-radius: 22px 22px 0 0;
  animation: cookieBannerFade .46s;
}
@keyframes cookieBannerFade {
  from{opacity:0;transform:translateY(40px);} to{opacity:1;transform:translateY(0);}
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 3px;
}
.cookie-banner .cookie-btn {
  background: #F4B942;
  color: #242F49;
  border: none;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(244,185,66,0.08);
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
}
.cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn:hover {
  background: #242F49;
  color: #F4B942;
}

.cookie-banner .cookie-link {
  color: #C38819;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner .cookie-link:hover {
  color: #242F49;
}

/* COOKIE CONSENT MODAL POPUP -------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,47,73,0.65);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade .38s;
}
@keyframes cookieModalFade {
  from{opacity:0;} to{opacity:1;}
}
.cookie-modal-content {
  background: #fffbe7;
  padding: 36px 28px;
  border-radius: 26px;
  box-shadow: 0 6px 32px 0 rgba(244,185,66,0.23);
  min-width: 320px;
  max-width: 95vw;
  color: #242F49;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  color: #242F49;
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-toggle, .cookie-toggle:checked {
  accent-color: #F4B942;
  width: 1.08em;
  height: 1.08em;
}
.cookie-modal-btns {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}
.cookie-modal-btn {
  background: #F4B942;
  color: #242F49;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 21px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-btn:hover, .cookie-modal-btn:focus {
  background: #242F49;
  color: #F4B942;
}
.cookie-modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #242F49;
  font-size: 1.55rem;
  cursor: pointer;
  margin-bottom: -14px;
  margin-top: -9px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4B942;
}

/* Hide by default */
.cookie-banner, .cookie-modal { display: none; }

/* UTILITIES ------------------------------------------------------------------------ */
.hide { display: none !important; }

/* END */
