/* 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 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: #E7EEF2;
  color: #14325B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 20px;
}
a {
  color: #14325B;
  text-decoration: none;
  transition: color .2s;
}
a:hover {
  color: #F4C165;
}

/* TYPOGRAPHY ----------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #14325B;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p, ul, ol, li {
  font-size: 1rem;
  color: #14325B;
}
strong { font-weight: bold; }
hr { border: 0; height: 1px; background: #D3DDE7; margin: 24px 0; }

/* LAYOUT CONTAINERS ---------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.map-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* SPACING SECTIONS (MANDATORY) -----------*/
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Card containers and content grids (MANDATORY) */
.card-container, .features-grid, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div, .card, .card-grid > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(20,50,91,0.10);
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 230px;
  max-width: 370px;
  position: relative;
  transition: transform 0.15s cubic-bezier(.4,0,.2,1), box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features-grid > div:hover, .card:hover {
  box-shadow: 0 10px 36px 0 rgba(20,50,91,0.16);
  transform: translateY(-5px) scale(1.03);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(20,50,91,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  max-width: 650px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(20,50,91,0.18);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #14325B;
  margin-bottom: 0;
}
.testimonial-info strong {
  color: #14325B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO BG and Gradient MODERN ------------*/
section:first-child {
  background: linear-gradient(90deg, #E7EEF2 30%, #F4C165 120%);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  margin-bottom: 48px;
}
section:first-child h1, section:first-child p {
  color: #14325B;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f4c165 55%, #F4C165 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 12px 0 rgba(20,50,91,0.10);
  transition: background 0.20s, transform 0.20s, box-shadow 0.20s;
  cursor: pointer;
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #F4C165 30%, #14325B 100%);
  color: #14325B;
  box-shadow: 0 6px 24px 0 rgba(244,193,101,0.15);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* HEADER & NAV --------------------------*/
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 10px 0 rgba(20,50,91,0.06);
  min-height: 68px;
}
header > a img {
  height: 42px;
  margin: 0 20px 0 10px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 12px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: #F4C165;
  color: #14325B;
  outline: none;
}

header .cta-btn {
  margin-left: auto;
  margin-right: 16px;
  background: linear-gradient(90deg,#F4C165 40%, #14325B 100%);
}
header .cta-btn:hover {
  background: linear-gradient(90deg, #14325B 30%, #F4C165 100%);
  color: #fff;
}

/* MOBILE MENU ---------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #14325B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 4px 14px 0 14px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 24;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F4C165;
  color: #14325B;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg,#14325B 80%, #F4C165 110%);
  color: #fff;
  z-index: 99;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.87,0,.13,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 26px 0 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 101;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F4C165;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F4C165;
  color: #14325B;
  outline: none;
}

/* FOOTER -------------------------------*/
footer {
  background: linear-gradient(90deg, #14325B 85%, #F4C165 120%);
  color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  padding: 42px 0 16px 0;
  margin-top: 60px;
  position: relative;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F4C165;
  color: #14325B;
  outline: none;
}
.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-brand img { height: 48px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: .98rem;
  margin-bottom: 18px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}
.footer-social a img {
  filter: brightness(0) invert(1) drop-shadow(1px 2px 2px #14325b55);
  width: 28px;
  height: 28px;
  transition: filter 0.18s, transform 0.20s;
}
.footer-social a:hover img {
  filter: brightness(0) invert(.6) sepia(.7) saturate(4) hue-rotate(20deg) drop-shadow(0 2px 3px #F4C16566);
  transform: scale(1.18) translateY(-1px);
}
footer small {
  display: block;
  text-align: center;
  color: #fff;
  opacity: .85;
  margin-top: 18px;
  font-size: .97rem;
}

/* LINKS, BUTTONS, EFFECTS ---------------*/
button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  background: #14325B;
  color: #fff;
  padding: 10px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.20s, color 0.18s, box-shadow 0.15s;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover,
button:focus, input[type="submit"]:focus {
  background: #F4C165;
  color: #14325B;
  outline: none;
}

.text-section a,
.text-section a:visited {
  color: #14325B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
}
.text-section a:hover,
.text-section a:focus {
  color: #F4C165;
}

/* FORMS (for possible contact pages) -----*/
input, textarea, select {
  border: 1.8px solid #BFD5E1;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  margin-bottom: 10px;
  background: #fff;
  color: #14325B;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #14325B;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #14325B;
  display: block;
  margin-bottom: 4px;
}

/* CARD DESIGN ---------------------------*/
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(20,50,91,0.10);
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .18s;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  box-shadow: 0 10px 38px 0 rgba(20,50,91,0.16);
  transform: translateY(-4px);
  z-index: 2;
}
.card h3 {
  margin-bottom: 6px;
}

/* TESTIMONIAL/REVIEW ACCENTUATION -------*/
.testimonial-card {
  background: #fff;
  color: #14325B;
  border-left: 7px solid #F4C165;
  box-shadow: 0 4px 24px 0 rgba(20,50,91,0.09);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #14325B;
}
.testimonial-info {
  font-size: 1rem;
  color: #14325B;
  opacity: 0.90;
}

/* RESPONSIVENESS ------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .features-grid > div,
  .card,
  .card-grid > div {
    min-width: 220px;
    max-width: 100%;
    flex: 1 1 47%;
  }
}
@media (max-width: 768px) {
  header nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
    z-index: 92;
  }
  .content-wrapper {
    flex-direction: column;
  }
  .features-grid, .card-grid,
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div,
  .card,
  .card-grid > div {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  section {
    padding: 24px 0 0 0;
    margin-bottom: 40px;
  }
  .footer-nav nav {
    gap: 11px;
  }
  footer {
    padding: 30px 0 9px 0;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.40rem; }
  h2 { font-size: 1.18rem; }
  .mobile-menu {
    padding: 20px 12px 0 12px;
  }
}

/* GRADIENT MODERN: SECTION ACCENTS ------*/
section {
  background: none;
}
section .container {
  background: none;
}
/* Decorative accents for featured or CTA sections */
section:nth-child(even) {
  background: linear-gradient(90deg,#fff 60%, #E7EEF2 130%);
  border-radius: 24px;
}
section:last-of-type .container {
  background: linear-gradient(90deg,#F4C165 60%, #E7EEF2 120%);
  border-radius: 16px;
}
.text-section h2 {
  background: linear-gradient(90deg, #14325B 50%, #F4C165 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* COOKIE BANNER -------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #14325B 90%, #F4C165 140%);
  color: #fff;
  box-shadow: 0 -4px 24px 0 rgba(20,50,91,0.14);
  padding: 22px 16px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  font-size: 1rem;
  animation: banner-in 0.7s cubic-bezier(.61,-0.01,.8,.13);
}
@keyframes banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin: 8px 0 0 0;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  padding: 10px 24px;
  transition: background 0.17s, color 0.17s;
  margin: 0;
}
.cookie-banner .cookie-accept {
  background: #F4C165;
  color: #14325B;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #14325B;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #14325B;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #F4C165;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #F4C165;
  text-decoration: underline;
  font-size: .98rem;
  padding: 4px 9px;
  cursor: pointer;
}
.cookie-banner .cookie-settings-btn:hover {
  color: #fff;
  text-decoration: none;
}

/* COOKIE PREFERENCES MODAL --------------*/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,50,91,0.48);
  z-index: 11000;
  transition: opacity 0.28s;
  opacity: 1;
  pointer-events: all;
  animation: fadeIn .37s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #14325B;
  padding: 36px 28px 30px 28px;
  border-radius: 22px;
  max-width: 410px;
  width: 92vw;
  box-shadow: 0 6px 32px rgba(20,50,91,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2,
.cookie-modal-content h3 {
  margin-bottom: 6px;
  color: #14325B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-switch {
  position: relative;
  width: 36px;
  height: 20px;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E7EEF2;
  border-radius: 24px;
  transition: background 0.22s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F4C165;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.21s;
  box-shadow: 0 1px 6px #BFD5E1;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal-content button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 24px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-content .cookie-save {
  background: #14325B;
  color: #fff;
}
.cookie-modal-content .cookie-save:hover {
  background: #F4C165;
  color: #14325B;
}
.cookie-modal-content .cookie-cancel {
  background: transparent;
  color: #14325B;
  border: 1.4px solid #14325B;
}
.cookie-modal-content .cookie-cancel:hover {
  background: #E7EEF2;
}

/* VISUAL HIERRARCHY, SHADOWS, ANIMATIONS -*/
.features-grid > div,
.card, .testimonial-card {
  box-shadow: 0 7px 24px 0 rgba(20,50,91,0.09);
}

.card, .testimonial-card, .cookie-modal-content {
  transition: box-shadow 0.20s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .cookie-modal-content:focus-within {
  box-shadow: 0 12px 36px 0 rgba(20,50,91,0.18);
}

/* SCROLLBAR STYLE -----------------------*/
body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-thumb { background: #F4C165; border-radius: 20px; }

/* ACCESSIBILITY & FOCUS -----------------*/
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px solid #F4C165;
  outline-offset: 1px;
}

/***** END OF CSS *****/
