/* 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,
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #153040;
  background: #fff;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #FFBF00;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:focus, a:hover {
  color: #FFBF00;
  outline: none;
}

/* FONT FACES */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #185570;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #153040;
}
ul, ol {
  margin: 16px 0 16px 32px;
  padding: 0;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #185570;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 12px 0;
  border-left: 4px solid #FFBF00;
  padding-left: 16px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* HEADER & NAVIGATION */
header {
  background: #185570;
  color: #fff;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #FFBF00;
  border-bottom: 2px solid #FFBF00;
}
header a img {
  max-height: 40px;
}
.cta-btn {
  background: #FFBF00;
  color: #185570;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(24,85,112,0.08);
  letter-spacing: 1px;
  transition: background 0.15s, color 0.17s, box-shadow 0.17s, transform .18s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #185570;
  color: #fff;
  box-shadow: 0 4px 20px #FFBF0075;
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #FFBF00;
  cursor: pointer;
  margin-left: 8px;
  z-index: 1002;
  transition: color 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  width: 100vw;
  min-height: 100vh;
  background: #185570;
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 24px 24px 24px;
  transition: transform .33s cubic-bezier(.7,0,.3,1), left .01s linear .32s;
  transform: translateX(0);
  box-shadow: -8px 0 28px -5px rgba(24,85,112,.16);
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.7,0,.3,1);
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #FFBF00;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 18px;
  z-index: 1110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  border-radius: 6px;
  transition: color 0.15s, background 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #FFBF00;
  background: #153040;
  border-bottom: 2px solid #FFBF00;
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 14px 12px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .mobile-menu {
    left: 100vw;
    transform: translateX(0);
    width: 100vw;
    max-width: 100vw;
    padding: 32px 18px 22px 18px;
  }
  .mobile-menu.open {
    left: 0;
    transform: translateX(-100vw);
  }
  .mobile-nav a {
    font-size: 1.15rem;
    padding: 16px 0;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(95deg, #D4EFF6 55%, #fff 100%);
  padding: 0;
  min-height: 365px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 365px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 0 50px 0;
  max-width: 650px;
}
.hero h1 {
  color: #185570;
  font-size: 2.6rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .hero, .hero .container {
    min-height: 200px;
    padding: 0;
  }
  .hero .content-wrapper {
    padding: 26px 0 26px 0;
    gap: 14px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* MAIN GENERAL SPACING */
main {
  margin-top: 0;
  min-height: 450px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 28px rgba(24,85,112,0.07);
}

/* CARD CONTAINERS */
.card-container,
.service-grid,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
}
.card, .service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(24,85,112,.10);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  flex: 1 1 245px;
  max-width: 315px;
  transition: box-shadow 0.18s, transform .18s;
  border: 2.5px solid #D4EFF6;
}
.card:hover, .service-card:hover,
.card:focus-within, .service-card:focus-within {
  box-shadow: 0 6px 30px #FFBF0030;
  border-color: #FFBF00;
  transform: translateY(-4px) scale(1.03);
}
.service-card img {
  max-width: 48px;
  margin-bottom: 6px;
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #185570;
  margin-bottom: 8px;
}
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFBF00;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: .5px;
}
.service-card a.cta-btn {
  align-self: flex-start;
  margin-top: 8px;
  font-size: .99rem;
  padding: 9px 22px;
}

@media (max-width: 1024px) {
  .card-container, .service-grid, .card-grid {
    gap: 18px;
  }
  .card, .service-card {
    padding: 24px 14px 20px 14px;
    min-width: 170px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .card-container, .service-grid, .card-grid {
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
  }
  .card, .service-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* GENERAL CONTENT WRAPPER */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 12px;
  width: 100%;
}

/* RESPONSIVE FLEX WRAPPERS (MANDATORY CLASSES) */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* FEATURES */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #D4EFF6;
  color: #153040;
  border-radius: 12px;
  padding: 18px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  box-shadow: 0 1px 6px rgba(24,85,112,0.06);
}
.faq-item strong {
  color: #185570;
  font-weight: 800;
}

.faq-search {
  background: #fff6ca;
  color: #FFBF00;
  border-radius: 8px;
  padding: 10px 18px;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* TESTIMONIALS */
.testimonials {
  background: #D4EFF6;
  border-radius: 40px;
  margin-bottom: 60px;
  padding: 36px 0 36px 0;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .content-wrapper {
  width: 100%;
  align-items: flex-start;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: 18px;
  background: #fff;
  color: #153040;
  box-shadow: 0 2px 8px rgba(24,85,112,0.08);
  margin-bottom: 20px;
  min-width: 280px;
  max-width: 600px;
  transition: box-shadow 0.18s, transform .17s;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card blockquote {
  color: #185570;
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 0;
  border-left: 4px solid #FFBF00;
  padding-left: 14px;
  background: none;
}
.testimonial-card div {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFBF00;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: 15px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 30px #FFBF0030;
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 18px 14px;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .testimonials {
    padding: 20px 0 28px 0;
    border-radius: 28px;
  }
}

/* CTA FINAL/CONTACT/GENERAL */
.cta,
.cta-final,
.cta-contact,
.thank-you {
  background: #185570;
  color: #fff;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 14px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(24,85,112,0.14);
}
.cta h2, .cta-final h2, .cta-contact h2, .thank-you h1 {
  color: #FFBF00;
  font-size: 2.1rem;
}
.cta p, .cta-final p, .cta-contact p, .thank-you p {
  color: #fff;
  font-size: 1.1rem;
}
.cta .cta-btn,
.cta-final .cta-btn,
.cta-contact .cta-btn,
.thank-you .cta-btn {
  background: #FFBF00;
  color: #185570;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .cta, .cta-final, .cta-contact, .thank-you {
    padding: 24px 8px;
    border-radius: 19px;
  }
  .cta h2, .cta-final h2, .cta-contact h2, .thank-you h1 {
    font-size: 1.5rem;
  }
}

/* THANK YOU PAGE */
.thank-you ul, .thank-you ol {
  color: #fff;
  margin-left: 22px;
}
.thank-you a {
  color: #FFBF00;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #153040;
  color: #fff;
  width: 100%;
  padding: 32px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 0;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFBF00;
  border-bottom: 2px solid #FFBF00;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.footer-brand img {
  max-height: 28px;
}
.footer-brand span {
  color: #fff;
  font-size: .95rem;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 768px) {
  footer .container {
    gap: 9px;
  }
  footer nav {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #153040;
  color: #fff;
  box-shadow: 0 -3px 18px rgba(24,85,112,0.23);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 14px 20px 14px;
  gap: 18px;
  font-size: 1.05rem;
  animation: cookie-fadein 0.61s cubic-bezier(.7,0,.3,1) both;
}
@keyframes cookie-fadein {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn,
.cookie-banner .cta-btn {
  background: #FFBF00;
  color: #185570;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 15px;
  padding: 10px 22px;
  font-size: .98rem;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, transform .16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #185570;
  color: #FFBF00;
  outline: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #185570;
  border: 1.5px solid #FFBF00;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFBF00;
  color: #185570;
}
.cookie-btn.settings {
  background: #D4EFF6;
  color: #185570;
  border: 1.5px solid #FFBF00;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFBF00;
  color: #185570;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,48,64,0.54);
  z-index: 1600;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #185570;
  border-radius: 19px;
  box-shadow: 0 12px 34px rgba(24,85,112,0.14);
  padding: 36px 24px 24px 24px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-fadein .43s cubic-bezier(.7,0,.3,1) both;
  position: relative;
}
@keyframes modal-fadein {
  from { transform: translateY(-40px) scale(.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #185570;
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-weight: 800;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
  padding: 8px 0;
  border-bottom: 1px solid #D4EFF6;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #185570;
  cursor: pointer;
}
.cookie-category .toggle {
  margin-left: auto;
  min-width: 54px;
  height: 28px;
  display: flex;
  align-items: center;
  position: relative;
}
.cookie-category .toggle input[type="checkbox"] {
  display: none;
}
.cookie-category .slider {
  display: inline-block;
  width: 46px;
  height: 22px;
  background: #D4EFF6;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-category .slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  top: 0;
  background: #FFBF00;
  border-radius: 50%;
  transition: 0.17s;
}
.cookie-category .toggle input[type="checkbox"]:checked + .slider {
  background: #185570;
}
.cookie-category .toggle input[type="checkbox"]:checked + .slider:before {
  transform: translateX(24px);
  background: #185570;
}
.cookie-modal .cta-group {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cta-btn {
  padding: 8px 20px;
  font-size: .96rem;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #185570;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1610;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFBF00;
}

@media (max-width: 480px) {
  .cookie-banner {
    font-size: .97rem;
    padding: 18px 4px 14px 4px;
  }
  .cookie-modal {
    padding: 22px 6px 12px 6px;
  }
}

/* GENERAL TRANSITIONS & UTILITIES */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  transition: border .16s, box-shadow .16s;
}
button {
  cursor: pointer;
}

/* Miscellaneous Utility Classes for Geometry and Shapes */
.rounded {
  border-radius: 16px !important;
}
.shadow {
  box-shadow: 0 2px 16px rgba(24,85,112,0.09) !important;
}
.bg-accent {
  background: #FFBF00;
  color: #185570;
}
.bg-primary {
  background: #185570;
  color: #fff;
}
.bg-secondary {
  background: #D4EFF6;
  color: #185570;
}

/* Accessibility focus states */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid #FFBF00;
  outline-offset: 2px;
}

/*------------------- RESPONSIVE MEDIA QUERIES -----------------------*/
@media (max-width: 1280px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1024px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 32px 10px; margin-bottom: 38px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.17rem; }
  .section { padding: 18px 3vw; margin-bottom: 26px; border-radius: 18px; }
  .content-wrapper { gap: 15px; }
  .thank-you, .cta-final, .cta, .cta-contact { padding: 18px 3vw; border-radius: 14px; }
}

/* Hide desktop nav when mobile is open */
@media (max-width: 768px) {
  header nav, .cta-btn {
    display: none !important;
  }
}
