/* RESET & BASELINE STYLES */
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;
}
html {
  box-sizing:border-box; height: 100%; scroll-behavior:smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #223A70;
  background-color: #FFFFFF;
  min-height: 100vh;
}
a {
  color: #A44700;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #223A70;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
  font-size: 16px;
}
img {
  max-width: 100%; display: block; height: auto; border-radius: 8px;
}
button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: #223A70;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #223A70;
  margin-bottom: 18px;
  text-transform: none;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #A44700;
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0.02em;
}
p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #223A70;
  line-height: 1.7;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #223A70;
}
.text-section {
  margin-bottom: 18px;
}

/* GEOMETRIC FLARES (modern_bold) */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(34, 58, 112, 0.07), 0 1.5px 6px rgba(167,71,0,0.03) ;
  position: relative;
  z-index: 1;
}
.feature-item, .features li, .features ol>li {
  position: relative;
  font-size: 17px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-weight: 500;
}
.features ul, .features ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  list-style: disc;
}
.about ul, .services ul {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 0;
}
.about ul {
  list-style: disc;
}
.services ul {
  list-style: circle;
}

/* CONTAINER & LAYOUTS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .card-content {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(34, 58, 112, 0.08);
  overflow: hidden;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px 18px;
}
.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: 22px 24px;
  background: #E0D4B0;
  color: #223A70;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(34,58,112,.07);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.5;
  flex: 1 1 260px;
  position: relative;
  min-width: 230px;
  transition: box-shadow .2s, background .2s;
}
.testimonial-card p {
  color: #223A70;
  font-style: italic;
  margin-bottom: 8px !important;
}
.testimonial-card span {
  display: block;
  color: #A44700;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: #223A70;
  padding: 0;
  margin-bottom: 28px;
  box-shadow: 0 6px 24px rgba(34, 58, 112, 0.07), 0 2px 10px rgba(167,71,0,0.035);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 14px 16px 14px 16px;
}
header img {
  max-height: 48px; height: 48px;
  border-radius: 0; background: none;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header nav a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 6px 9px;
  border-radius: 7px;
  transition: background .2s, color .2s;
}
header nav a:hover, header nav a:focus {
  background: #E0D4B0;
  color: #223A70;
  text-decoration: none;
}
.cta-btn {
  background: #A44700;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 12px 27px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(167,71,0,0.13);
  transition: background .18s, transform .15s, box-shadow .15s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,.cta-btn:focus {
  background: #223A70;
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 18px rgba(34, 58, 112, 0.13);
}

/* HERO SECTION */
.hero {
  background: #E0D4B0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 7px 32px rgba(167, 71, 0, .06);
  margin-bottom: 54px;
  padding-top: 44px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero p {
  font-size: 20px;
  color: #223A70;
  font-weight: 500;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 16px;
  margin-bottom: 24px;
}
.contact-details p img {
  margin-right: 10px;
  vertical-align: middle;
  width: 22px; height: 22px;
  display: inline-block;
}
.map-embed {
  margin-bottom: 16px;
  background: #f9f6ef;
  border-radius: 10px;
  padding: 17px 20px;
}

/* FOOTER */
footer {
  background: #223A70;
  padding: 38px 0 16px 0;
  width: 100%;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: column; gap: 12px; align-items: center; justify-content: center;
}
footer img {
  max-height: 38px;
  border-radius: 0;
  margin-bottom: 12px;
}
footer nav {
  display: flex; flex-direction: row; gap: 22px; margin-bottom: 10px; flex-wrap: wrap;
}
footer nav a {
  color: #E0D4B0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color .2s;
}
footer nav a:hover,footer nav a:focus {
  color: #fff;
}
footer p {
  color: #E0D4B0;
  font-size: 13px;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 22px;
  width: 40px;
  height: 40px;
  background: #A44700;
  color: #fff;
  border-radius: 8px;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  border: none;
  box-shadow: 0 2px 8px rgba(167,71,0,0.09);
  transition: background .2s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #223A70;
  color:#fff;
}
.mobile-menu {
  position: fixed;
  top: 0; right: -100vw; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #223A70;
  box-shadow: -4px 0 24px rgba(34,58,112,0.18);
  z-index: 1050;
  overflow-y: auto;
  transition: transform .36s cubic-bezier(0.74,0.09,0.4,1.05), right .36s;
  transform: translateX(100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none; border:none;
  color: #fff; font-size: 34px;
  position: absolute;
  top: 16px; right: 24px;
  z-index: 1101;
  width: 44px; height: 44px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A44700; color: #fff;
}
.mobile-nav {
  margin-top: 68px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 18px 0 13px 0;
  border-bottom: 1.5px solid #A44700;
  width: 100%;
  letter-spacing: 0.014em;
  text-transform: uppercase;
  transition: color .18s, background .16s;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E0D4B0;
  background: rgba(164, 71, 0, 0.07);
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .hero .container { padding: 0 10px; }
  .card { min-width: 220px; }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 16px;
  }
  .container { padding-left: 6px; padding-right: 6px; }
}
@media (max-width: 800px) {
  header .container nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer nav { gap: 9px; }
  .hero { border-radius: 0 0 20px 20px; }
}
@media (max-width: 768px) {
  .section, section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  .container { max-width: 98vw; padding: 0 3vw; }
  .content-wrapper { gap: 18px; }
  .card-container, .content-grid { gap: 13px; }
  .card {
    padding: 18px 8px;
    min-width: 120px;
  }
  h1, .hero h1 {font-size: 1.6rem; margin-bottom: 10px;}
  h2 {font-size: 1.19rem;}
  .features ul,.features ol, .about ul, .services ul {gap: 7px;}
  .testimonial-card {padding: 16px 10px; font-size: 15px;}
  .testimonial-card span {font-size: 13px;}
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero {
    padding-top: 24px;
    margin-bottom: 30px;
    border-radius: 0 0 16px 16px;
  }
}
@media (max-width: 500px) {
  h1, .hero h1 {font-size: 1.1rem;}
  h2 {font-size: 1rem;}
}

/* ANIMATIONS & TRANSITIONS */
.cta-btn, .card, .testimonial-card, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow .15s, background .18s, color .16s, transform .18s;
}
.cta-btn:active { transform: scale(0.98); }
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(34,58,112,0.14);
  background: #f8f6f1;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #223A70;
  color: #fff;
  padding: 24px 10px 18px 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  z-index: 3330;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -8px 28px rgba(34,58,112,0.19);
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .38s cubic-bezier(0.85,.15,0.45,1.12), transform .38s cubic-bezier(0.85,.15,0.45,1.12);
  border-radius: 26px 26px 0 0;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 18px;
  margin: 0;
  cursor: pointer;
  background: #A44700;
  color: #fff;
  margin-right: 5px;
  transition: background .18s, color .18s, box-shadow .13s;
  box-shadow: 0 1px 7px rgba(167,71,0,0.11);
}
.cookie-btn:last-child {margin-right:0;}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E0D4B0;
  color: #A44700;
}
.cookie-btn--settings {
  background: #E0D4B0;
  color: #223A70;
  border: 1.5px solid #A44700;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #A44700;
  color: #fff;
  border-color: #E0D4B0;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-53%) scale(0.96);
  background: #fff;
  color: #223A70;
  width: 95%; max-width: 410px;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(34, 58, 112, 0.21);
  z-index: 4000;
  padding: 34px 23px 26px 23px;
  display: none;
  flex-direction: column;
  gap: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .39s cubic-bezier(0.92,0,.48,1.23), transform .29s cubic-bezier(0.85,0.03,0.39,1.22);
}
.cookie-modal.visible {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: #223A70;
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 13px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #A44700;
  width: 19px; height: 19px;
  border-radius: 5px;
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 16px; justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}
.cookie-modal .cookie-category-essential {
  color:#A44700; font-weight:700;
}

@media (max-width: 400px) {
  .cookie-banner { font-size: 14px; padding:8px 3vw 8px 3vw; }
  .cookie-modal {padding: 16px 3vw 12px 3vw;}
  .cookie-modal h2 {font-size: 1rem;}
}

/* LEGAL SECTIONS */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 14px rgba(34,58,112,0.08);
  padding: 38px 16px 22px 16px;
}
.legal h1 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.legal ul {
  margin-bottom: 0;
  gap: 10px;
}
.legal li {
  margin-bottom: 7px;
}

/* CONFIRMATION / THANK YOU */
.confirmation h1 {
  color: #A44700;
}
.confirmation .cta-btn {
  margin-top: 26px;
}

/* MISC */
hr {
  border: none;
  border-bottom: 2px solid #E0D4B0;
  margin: 20px 0;
}
::-webkit-scrollbar {
  width: 8px;
  background: #E0D4B0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #223A70;
  border-radius: 8px;
}
::-moz-selection { background: #E0D4B0; color: #A44700; }
::selection { background: #E0D4B0; color: #A44700; }

/****** MODERN BOLD DESIGN DECOR *******/
.section::before,
.section::after {
  content: '';
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 16px 0 22px 0;
  background: #A44700;
  opacity: 0.07;
  z-index: 0;
  transform: rotate(-10deg) scale(1.15);
}
.section::before {
  top: 12px; left: 11px;
}
.section::after {
  bottom: 15px; right: 22px;
  background: #A75C32;
}

/****** OVERRIDE DECOR FOR HERO/LEGAL ***** */
.hero::before, .hero::after, .legal::before, .legal::after { display:none!important; content:none; }

/* ACCESSIBILITY FOCUS STYLES */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 3px solid #A44700;
  outline-offset: 2px;
  z-index: 5000;
}

/******* ENSURE ALL SECTIONS DON'T OVERLAP *******/
.section + .section, section + section, .card + .card, .testimonial-card + .testimonial-card {
  margin-top: 24px;
}

/* Prevent card/content collisions */
.card-container > *,
.content-grid > *,
.features ul > *,
.testimonial-card + .testimonial-card {
  margin-bottom: 20px;
}

/****** END: MODERN BOLD CSS ******/
