/*----- CSS RESET & BASE ----*/
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F6F2;
  color: #2C2C2C;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a {
  color: #266299;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #48B485;
  text-decoration: underline;
}
ul, ol, li {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  font-size: 100%;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}

/*----- BRANDING FONTS ----*/
h1, h2, h3, h4, .cta-btn, .logo {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #266299;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #266299;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #266299;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #266299;
}
p {
  font-size: 1rem;
  color: #383838;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(28,32,35,0.04);
  /* modern subtle shadow */
}

.text-section {
  margin-bottom: 24px;
}

.text-section ul, .text-section ol {
  margin: 18px 0 0 24px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 10px;
  list-style-type: disc;
  color: #22313b;
}

/*----- HEADER & NAVIGATION ----*/
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(28,32,35,0.07);
  padding: 0;
  position: sticky;
  top: 0; 
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  color: #266299;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  color: #48B485;
}

.cta-btn {
  background: #48B485;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  font-size: 1.05rem;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 10px rgba(72,180,133,0.06);
  transition: background 0.18s, transform 0.18s, box-shadow 0.24s;
  margin-left: 16px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #266299;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(38,98,153,0.12);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: #266299;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 12px;
  margin-left: 18px;
  transition: background 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #48B485;
  color: #fff;
}

/*---- MOBILE MENU ----*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -6px 0 28px rgba(28,32,35,0.13);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  opacity: 1;
  pointer-events: auto;
}
body.mobile-menu-active .mobile-menu {
  transform: translateX(0);
  box-shadow: -8px 0 32px rgba(38,98,153,0.18);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 16px 10px 0;
  font-size: 2rem;
  background: transparent;
  color: #22313B;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e6f7ee;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 0 0;
  padding-left: 32px;
  padding-right: 24px;
}
.mobile-nav a {
  background: transparent;
  color: #266299;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #e7f7f0;
  color: #48B485;
}

body.mobile-menu-active {
  overflow: hidden;
}
body.mobile-menu-active::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,44,44,0.38);
  z-index: 1200;
  transition: background 0.28s;
  pointer-events: auto;
}

/*--- HERO & SECTIONS ----*/
.hero-section {
  background: #F7F6F2;
  padding: 54px 0 40px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  min-height: 320px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  gap: 18px;
}
.hero-section h1 {
  color: #266299;
  margin-bottom: 14px;
}
.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: #38434B;
}

/*---- FEATURE SECTION ----*/
.features-section {
  margin-bottom: 60px;
  padding: 0;
}
.features-section .container {
  padding-top: 12px;
  padding-bottom: 12px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid > div {
  background: #fff;
  border: 1px solid #f1f1f3;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(38,98,153,0.036);
  flex: 1 1 235px;
  min-width: 210px;
  max-width: 315px;
  padding: 26px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div img {
  height: 42px;
  margin-bottom: 6px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 6px 26px 0 rgba(38,98,153,0.11);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid h3 {
  font-size: 1.1rem;
  color: #266299;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 0.97rem;
  color: #37434F;
}

/*--- SERVICES SECTION ---*/
.services-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #eafaf6;
  border-radius: 16px;
}
.services-section h2 {
  color: #266299;
  margin-bottom: 16px;
}
.services-section ul {
  padding-left: 21px;
}
.services-section ul li {
  font-size: 1.03rem;
  color: #34424f;
  margin-bottom: 12px;
  line-height: 1.55;
}

.services-section .text-section {
  padding: 12px 2px 0 2px;
}

/*--- TESTIMONIALS SECTION ---*/
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-section h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 20px rgba(38,98,153,0.035);
  margin-bottom: 20px;
  color: #232932;
}
.testimonial-card p {
  margin: 0;
  font-size: 1.08rem;
  color: #22313b;
  font-style: italic;
}
.testimonial-card span {
  color: #48B485;
  font-size: .99rem;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  margin-left: 14px;
}

/*--- CTA SECTION ---*/
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #266299;
  border-radius: 14px;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  margin: 0 0 22px 0;
}
.cta-section .cta-btn {
  background: #48B485;
  color: #fff;
  font-weight: 600;
  margin-top: 8px;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: #fff;
  color: #266299;
  border: 2px solid #48B485;
}

/*--- CARD CONTAINERS/GRIDS ---*/
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(38,98,153,0.09);
  margin-bottom: 20px;
  padding: 22px 20px;
  position: relative;
  min-width: 210px;
  transition: box-shadow 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(38, 98, 153, 0.13);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*--- THANK YOU/INFO SECTIONS ---*/
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #eafaf6;
  border-radius: 18px;
  text-align: center;
}
.thank-you-section h1 {
  color: #266299;
  margin-bottom: 20px;
}
.thank-you-section .cta-btn {
  margin-top: 30px;
  min-width: 180px;
}

/*--- FOOTER ---*/
footer {
  background: #FFF;
  box-shadow: 0 -2px 20px 0 rgba(44,44,44,0.06);
  padding: 30px 0 10px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav a {
  color: #266299;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #48B485;
}
.footer-contact {
  color: #4c5a68;
  font-size: 0.98rem;
  max-width: 330px;
}
.footer-contact p {
  color: inherit;
  margin-bottom: 0;
}

/*--- CONTACT/FAQ PAGE SECTIONS ---*/
.contact-section, .faq-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(38,98,153,0.04);
}

.contact-section ul, .faq-section ul {
  margin-top: 14px;
  margin-left: 24px;
}
.contact-section ul li, .faq-section ul li {
  margin-bottom: 9px;
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #22313b;
  color: #fff;
  padding: 30px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 28px rgba(44,44,44,0.13);
  z-index: 2100;
  gap: 16px;
  font-size: 1rem;
  border-radius: 15px 15px 0 0;
  animation: cookie-slide-up 0.6s cubic-bezier(.68,-0.01,0,.99);
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn {
  background: #48B485;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 26px;
  margin: 0;
  border-radius: 28px;
  border: none;
  transition: background .15s, color .15s, box-shadow .19s;
  box-shadow: 0 1px 6px rgba(72,180,133,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #266299;
}
.cookie-btn.secondary {
  background: #fff;
  color: #266299;
  border: 2px solid #266299;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #48B485;
  color: #fff;
  border-color: #48B485;
}

.cookie-settings-btn {
  background: #F7F6F2;
  color: #22313b;
  font-size: 0.95rem;
  border-radius: 18px;
  padding: 8px 19px;
  margin-left: 6px;
  transition: background 0.15s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ccefe1;
  color: #22313b;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(44,44,44,0.33);
  z-index: 2201;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in .36s  cubic-bezier(.68,-0.01,0,.99);
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 22px 24px 22px;
  border-radius: 18px;
  min-width: 290px;
  max-width: 98vw;
  box-shadow: 0 4px 40px 0 rgba(38,98,153,0.15);
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  color: #266299;
  font-size: 1.15rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0 0 0;
}
.cookie-category span {
  font-size: 1rem;
}
.cookie-toggle {
  height: 22px;
  width: 44px;
  background: #e2e7ee;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.18s;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle[aria-checked="true"] {
  background: #48B485;
}
.cookie-toggle .toggle-dot {
  position: absolute;
  left: 3px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 9px;
  transition: left 0.18s;
}
.cookie-toggle[aria-checked="true"] .toggle-dot {
  left: 24px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/*--- RESPONSIVE DESIGN ---*/
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 900px) {
  .features-section .feature-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.05rem; }
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    padding-top: 28px;
    padding-bottom: 18px;
    min-height: 180px;
  }
  .hero-section .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .section, .cta-section, .services-section, .testimonials-section, .contact-section, .faq-section, .thank-you-section {
    padding: 25px 8px !important;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
}
@media (max-width: 650px) {
  .feature-grid, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    max-width: 100%;
    min-width: 0;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    padding: 12px 6px 12px 6px;
  }
}
@media (max-width: 480px) {
  .section, .cta-section, .services-section, .testimonials-section, .contact-section, .faq-section, .thank-you-section {
    padding: 18px 3px !important;
  }
  .cookie-consent-banner {
    padding: 18px 5px;
    font-size: 0.98rem;
  }
  .cookie-modal-content {
    padding: 18px 6px 14px 6px;
    min-width: 0;
  }
}

/*--- MICRO-INTERACTIONS & ACCESSIBILITY ---*/
.main-nav a, .footer-nav a, .cta-btn, .feature-grid > div, .card {
  outline: none;
}
.main-nav a:focus, .footer-nav a:focus, .cta-btn:focus, .feature-grid > div:focus {
  box-shadow: 0 0 0 3px #48B48544;
  border-radius: 7px;
}

/*--- UTILITIES & SPECIAL CLASSES ---*/
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.hidden { display: none !important; }

/*--- SCANDINAVIAN CLEAN ADDITIONS ---*/
body, .section, .container, .feature-grid > div, .card, .testimonials-section, .cta-section, .services-section, .thank-you-section {
  /* Light, zen Scandinavian white background, lots of air */
  background-repeat: no-repeat;
  background-size: cover;
}
h1, h2, h3, h4 {
  letter-spacing: .02em;
}
.section, .services-section, .testimonials-section, .cta-section, .feature-grid > div, .card, .footer-contact, .cookie-modal-content {
  box-shadow: 0 2px 19px 0 rgba(38,98,153,0.05);
  border-radius: 14px;
}
.feature-grid > div, .card, .testimonials-section, .cta-section, .thank-you-section {
  border-radius: 14px;
}

::-webkit-scrollbar {
  width: 8px;
  background: #eafaf6;
  border-radius: 14px;
}
::-webkit-scrollbar-thumb {
  background: #48B48555;
  border-radius: 14px;
}
