/* RESET & NORMALIZE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F7F8;
  color: #25435B;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #25435B;
  background-color: #F5F7F8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  color: #25435B;
  line-height: 1.18;
}
h1 { font-size: 2.3rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.08rem; }

p, ul, li, a, label, input, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

ul, ol {
  margin-left: 28px;
  margin-bottom: 1.3rem;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
strong {
  font-weight: 700;
}

a { color: #25435B; text-decoration: underline; word-break: break-word; }
a:hover, a:focus {
  color: #F9C26A;
  transition: color 0.15s;
  outline: none;
}
main a.cta-btn, .cta-btn { text-decoration: none; }

/* SPACING & CONTAINER PATTERNS */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(37,67,91,0.07);
  color: #1a2730;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E9EEF2;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  min-height: 74px;
  position: relative;
  z-index: 900;
}
header > a img {
  height: 38px;
  margin-right: 28px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 8px;
}
.main-nav a {
  color: #25435B;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F9C26A;
  border-bottom: 2px solid #F9C26A;
}

.cta-btn {
  background: #25435B;
  color: #fff;
  border-radius: 32px;
  padding: 13px 34px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 28px;
  margin-right: 10px;
  box-shadow: 0 2px 10px rgba(37,67,91,0.08);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.4px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F9C26A;
  color: #25435B;
  box-shadow: 0 6px 22px rgba(37,67,91,0.14);
  transform: translateY(-1px) scale(1.03);
}
.secondary-cta {
  background: #fff6e8;
  color: #25435B;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(249,194,106,0.07);
  border: 1.5px solid #F9C26A;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  display: inline-block;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #F9C26A;
  color: #25435B;
  border-color: #25435B;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1em;
  color: #25435B;
  margin-left: auto;
  margin-right: 18px;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E9EEF2;
  color: #F9C26A;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(249, 194, 106, 0.99);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.25,0.85,0.45,1);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 0 0;
  font-size: 2em;
  background: none;
  border: none;
  color: #25435B;
  padding: 3px 13px;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff6e8;
  color: #C69128;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 28px;
}
.mobile-nav a {
  color: #25435B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.3em;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.14s, color 0.13s, box-shadow 0.14s;
  width: 80vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #F9C26A;
  box-shadow: 0 2px 16px rgba(37,67,91,0.07);
}

/* HERO, SECTIONS, FEATURES */
.hero {
  width: 100%;
  background: #E9EEF2;
  padding: 64px 0 40px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
}
.hero h1 {
  margin-bottom: 14px;
  font-size: 2.1em;
  letter-spacing: 0.7px;
  color: #25435B;
}
.hero p {
  margin-bottom: 16px;
  color: #38566b;
  font-size: 1.12em;
}
.section {
  background: transparent;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features {
  width: 100%;
  margin-bottom: 40px;
}
.features .content-wrapper {
  gap: 24px;
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-grid > div, .service-list > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  padding: 26px 22px 22px 22px;
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(37,67,91,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 6px;
}
.feature-grid h3, .service-list h3, .service-list h2 {
  margin-bottom: 8px;
  color: #25435B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}
.service-list p, .feature-grid p {
  color: #425b74;
  font-size: 1.01em;
}
.service-list strong {
  color: #25435B;
  font-weight: bold;
  font-size: 1.07em;
}

.service-list a.cta-btn {
  margin-top: 14px;
}
/* FAQ Accordion (static for now) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 23px 0 32px 0;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 1px 10px rgba(37,67,91,0.06);
}
.faq-accordion h3 {
  font-size: 1.04em;
  margin-bottom: 7px;
  color: #25435B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-accordion p {
  color: #38566b;
  font-size: 1em;
}

/* TESTIMONIALS */
.testimonials .testimonial-card {
  margin-bottom: 24px;
  background: #fff;
  color: #223140;
  border-radius: 14px;
  box-shadow: 0 1px 12px rgba(37,67,91,0.08);
  padding: 28px 26px;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.06em;
  position: relative;
}
.testimonial-card strong {
  color: #25435B;
  font-weight: 700;
}
.testimonial-card span:last-child {
  color: #F9C26A;
  font-size: 1.2em;
  margin-top: 4px;
}
.testimonials h2, .testimonials h1 {
  margin-bottom: 27px;
  font-size: 1.45em;
}

/* CTA LAST SECTION */
.cta-last {
  background: #F9C26A;
  color: #25435B;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(249,194,106,0.13);
  padding: 50px 20px;
  margin-bottom: 28px;
  text-align: center;
}
.cta-last h2 {
  color: #25435B;
  margin-bottom: 20px;
  font-size: 1.26em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cta-last .cta-btn {
  margin-top: 9px;
}
/* FOOTER */
footer {
  background: #E9EEF2;
  border-top: 1px solid #ACB8C3;
  display: flex;
  flex-direction: column;
  padding: 36px 20px 28px 20px;
  margin-top: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d9e2e7;
}
.footer-nav a {
  color: #25435B;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.92;
  transition: color 0.14s;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9C26A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #25435B;
  font-size: 1em;
  margin-top: 15px;
}
.footer-contact img {
  height: 32px;
  width: auto;
  margin-right: 7px;
}
.footer-contact span {
  margin-bottom: 7px;
}

/* TEXT SECTION / CONTENT */
.text-section {
  margin-bottom: 28px;
}
.text-section h2 {
  font-size: 1.2em;
  margin-top: 22px;
}
.text-section ul {
  margin-bottom: 18px;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
}

/* CUSTOM CLASSES & MISC */
strong {
  font-weight: 700;
}

/* Responsive Typography */
@media (max-width: 480px) {
  html { font-size: 15px; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.03rem; }
}
@media (max-width: 860px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  header {
    min-height: 68px;
    padding: 0 0 0 10px;
  }
/* Use column on more wrappers on smaller screens */
}

/* SERVICES/LIST GRIDS ON MOBILE */
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin: 0 0 0 auto;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-contact {
    font-size: 1rem;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 43px;
  }
  .cta-last {
    padding: 35px 8px;
    border-radius: 11px;
  }
  .testimonials .testimonial-card {
    padding: 18px 13px;
  }
}
@media (max-width: 540px) {
  header > a img {
    height: 30px;
  }
  .footer-contact img {
    height: 24px;
  }
}

/* Animations */
.cta-btn, .secondary-cta, .main-nav a, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close, .service-list > div, .feature-grid > div {
  transition: all 0.16s cubic-bezier(0.42,0,0.58,1);
}
.testimonial-card {
  transition: box-shadow 0.22s cubic-bezier(0.44,0.15,0.25,1), transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(37,67,91,0.17);
  transform: translateY(-1px) scale(1.01);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #25435B;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 26px 16px 19px 16px;
  z-index: 2400;
  box-shadow: 0 -2px 22px rgba(30,50,69,0.13);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__text {
  font-size: 1.01em;
  color: #fff;
  max-width: 560px;
}
.cookie-banner__btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button, .cookie-banner .btn {
  background: #F9C26A;
  color: #25435B;
  padding: 9px 19px;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  margin: 0;
  transition: filter 0.13s, background 0.17s, color 0.13s;
}
.cookie-banner button.cookie-settings-btn {
  background: #E9EEF2;
  color: #25435B;
}
.cookie-banner button:hover, .cookie-banner .btn:hover {
  background: #25435B;
  color: #F9C26A;
  filter: brightness(0.96);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 19px 7px 19px 7px;
  }
  .cookie-banner__btns {
    gap: 7px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  left:0; top:0; width: 100vw; height: 100vh;
  background: rgba(30,50,69, 0.42);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  max-width: 410px;
  width: 96vw;
  padding: 32px 25px 21px 25px;
  box-shadow: 0 8px 32px rgba(37,67,91,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookie-fadein 0.33s ease;
}
@keyframes cookie-fadein { from { transform: translateY(24px); opacity: 0;} to {transform: none; opacity:1;}}
.cookie-modal h2 {
  font-size: 1.24em;
  margin-bottom: 7px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-category span {
  font-size: 1.00em;
  color: #25435B;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 38px;
  height: 24px;
  background: #E9EEF2;
  border-radius: 14px;
  position: relative;
  margin-left: 12px;
  border: 1.5px solid #C3CCD3;
  transition: background 0.13s, border 0.13s;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: #F9C26A;
  border-color: #F9C26A;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.14s;
  box-shadow: 0 1px 5px rgba(37,67,91,0.13);
}
.cookie-toggle[aria-checked="true"]::after {
  transform: translateX(13px);
  background: #fff;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal button, .cookie-modal .btn {
  background: #F9C26A;
  color: #25435B;
  border: none;
  border-radius: 15px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01em;
  cursor: pointer;
  transition: background 0.12s, color 0.13s;
}
.cookie-modal button.cookie-cancel {
  background: #E9EEF2;
  color: #25435B;
}
.cookie-modal button:hover, .cookie-modal .btn:hover {
  background: #25435B;
  color: #F9C26A;
}
.cookie-modal__close {
  position: absolute;
  top: 11px; right: 14px;
  background: none;
  border: none;
  font-size: 1.6em;
  color: #ACB8C3;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #E9EEF2;
  color: #25435B;
}

/* Accessibility: focus outlines */
a:focus, button:focus, .cta-btn:focus, input:focus, .secondary-cta:focus {
  outline: 2px dashed #F9C26A;
  outline-offset: 2px;
}

/* Scrollbar style (optional for scandi minimalism) */
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #E9EEF2;
  border-radius: 6px;
}
/* Hide number spinner */
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* ---------------------------------------------------------- */
/* END OF STYLE.CSS */