/* CSS RESET & BASE TYPOGRAPHY */
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.6;
  background: #F8F9FA;
  color: #222;
  font-family: Arial, 'Montserrat', system-ui, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B263B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5BB00;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-bottom: 24px;
}
th, td {
  padding: 10px 8px;
  border-bottom: 1px solid #E0E1DD;
  text-align: left;
  font-family: Arial, sans-serif;
}
th {
  background: #F4F5F6;
  font-weight: bold;
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1B263B;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1B263B;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #14304A;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}
p, .text-section, .content-wrapper {
  font-family: Arial, 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #23272A;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.2rem;
  color: #46526A;
  margin-bottom: 22px;
}

/* CONTAINER AND MAIN LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* SCANDINAVIAN CLEAN SECTIONS */
section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,40,60,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  section {
    padding: 24px 8px;
  }
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 16px 5px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E0E1DD;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  height: 46px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1B263B;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F5BB00;
}

.cta-button {
  background: #F5BB00;
  color: #1B263B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 8px rgba(61,57,44,0.08);
  cursor: pointer;
  margin-left: 16px;
  text-align: center;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
  letter-spacing: 0.5px;
  display: inline-block;
  text-decoration: none;
  min-width: 150px;
}
.cta-button:hover, .cta-button:focus {
  background: #1B263B;
  color: #F5BB00;
  box-shadow: 0 4px 18px rgba(26,35,50,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1B263B;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1202;
  padding: 6px 8px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F5BB00;
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
  .cta-button {
    min-width: 130px;
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 7px;
  }
  .main-nav {
    gap: 7px;
  }
  .cta-button {
    margin-left: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-button:not(.mobile-cta) {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    min-height: 56px;
  }
  .logo img {
    height: 33px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: rgba(255,255,255,0.989);
  box-shadow: 0 3px 30px rgba(30,50,70,0.10);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.61,0,0.31,1), box-shadow 0.18s;
  z-index: 1201;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 100vmax rgba(30,37,49,0.35);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #1B263B;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 1202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 0 0 0 32px;
  padding: 26px 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #1B263B;
  font-weight: 600;
  transition: color 0.17s;
  padding: 3px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5BB00;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .mobile-menu-close {
    margin: 14px 11px 0 0;
    font-size: 2.0rem;
  }
  .mobile-nav {
    margin-left: 15px;
    gap: 16px;
  }
}

/* MAIN FLEX/SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30,35,70,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  color: #23272A;
  border-radius: 11px;
  box-shadow: 0 2px 12px rgba(77,92,110,0.10);
  padding: 26px 24px;
  margin-bottom: 20px;
  border-left: 5px solid #F5BB00;
  font-family: Arial, sans-serif;
  font-size: 1.09rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: #1B263B;
  box-shadow: 0 6px 28px rgba(40,50,70,0.11);
}
.testimonial-card p {
  color: #1B263B;
  font-size: 1.09rem;
  margin-bottom: 9px;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #46526A;
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CUSTOM FEATURE GRID (used for advantages, etc.) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 16px 0;
}
.feature-grid li {
  background: #F4F6F8;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(35,45,60,0.06);
  padding: 22px 16px 20px 16px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, background 0.18s;
  margin-bottom: 0;
}
.feature-grid li:hover,
.feature-grid li:focus {
  box-shadow: 0 4px 18px rgba(50,55,77,0.13);
  background: #E0E1DD;
}
.feature-grid img {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
}

/* SERVICE LISTS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-list li {
  background: #FAFAFA;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(50,60,77,0.06);
  padding: 22px 16px 20px 16px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, background 0.18s;
  margin-bottom: 0;
}
.service-list li:hover {
  box-shadow: 0 4px 18px rgba(73,75,100,0.13);
  background: #E0E1DD;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    gap: 15px;
  }
}
@media (max-width: 640px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 10px !important;
  }
  .feature-grid li, .service-list li {
    min-width: initial;
    width: 100%;
    padding: 16px 12px 16px 12px;
  }
}

/* CONTACT SNIPPET */
.contact-info-snippet {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 18px 0;
  list-style: none;
}
.contact-info-snippet li {
  font-size: 1rem;
  color: #22334A;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.contact-info-snippet img {
  width: 20px;
  height: 20px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 18px 0;
  list-style: none;
}
.contact-details li {
  font-size: 1.02rem;
  color: #22334A;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.contact-details img {
  width: 20px;
  height: 20px;
}

/* FAQ LISTS */
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  margin-top: 20px;
  color: #1B263B;
}
.faq-list dd {
  margin-left: 0;
  font-size: 1rem;
  color: #46526A;
  margin-bottom: 12px;
}
.faq h3 {
  font-size: 1.06rem;
  color: #1B263B;
  margin-bottom: 7px;
}
.faq p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 13px;
}

/* FOOTER */
footer {
  background: #F8F9FA;
  border-top: 1px solid #E0E1DD;
  margin-top: 80px;
  padding: 40px 0 16px 0;
  color: #233042;
  font-family: Arial, 'Montserrat', sans-serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #222F37;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.87;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5BB00;
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  color: #647280;
}
@media (max-width: 640px) {
  footer {
    padding: 28px 0 10px 0;
  }
  .footer-nav {
    gap: 15px;
    font-size: 0.97rem;
  }
}

/* BUTTONS & FORM ELEMENTS */
button,
input[type="submit"],
input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F5BB00;
  color: #1B263B;
  border: none;
  padding: 10px 26px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(83,72,27,0.05);
  margin: 2px;
  transition: background 0.19s, color 0.19s, transform 0.13s, box-shadow 0.18s;
  outline: none;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #1B263B;
  color: #F5BB00;
  box-shadow: 0 6px 24px rgba(30,30,65,0.12);
}
button:focus {
  outline: 2px solid #F5BB00;
  outline-offset: 1px;
}

input, textarea, select {
  font-family: Arial, 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #D6D9DE;
  background: #F6F7F8;
  padding: 9px 12px;
  margin-bottom: 14px;
  width: 100%;
  transition: border 0.16s;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F5BB00;
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid #E0E1DD;
  box-shadow: 0 -2px 26px rgba(80,90,110,0.08);
  z-index: 1500;
  padding: 24px 20px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
  font-size: 1rem;
  transition: transform 0.32s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner-message {
  color: #1B263B;
  font-size: 1rem;
  flex: 1;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  min-width: 190px;
}
.cookie-banner button, .cookie-banner a {
  min-width: 98px;
  font-size: 1rem;
  padding: 9px 14px;
  border-radius: 8px;
  background: #E0E1DD;
  color: #1B263B;
  font-weight: 600;
  border: none;
  box-shadow: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-accept {
  background: #F5BB00;
  color: #1B263B;
}
.cookie-banner .cookie-accept:hover {
  background: #1B263B;
  color: #F5BB00;
}
.cookie-banner .cookie-reject {
  background: #E0E1DD;
  color: #1B263B;
}
.cookie-banner .cookie-reject:hover {
  color: #F5BB00;
  background: #B8BDB6;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #1B263B;
  text-decoration: underline;
  min-width: 0;
}
.cookie-banner .cookie-settings:hover {
  color: #F5BB00;
  background: #F7F6EC;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 7px 18px 7px;
    gap: 13px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 9px;
  }
  .cookie-banner-message {
    font-size: 0.99rem;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,38,59,0.66);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.28s ease;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(50,60,80,0.18);
  max-width: 420px;
  min-width: 0;
  width: 90vw;
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 1.06rem;
  margin: 0 8px;
}
.cookie-modal h2, .cookie-modal h3 {
  color: #1B263B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #22334A;
}
.toggle-switch {
  width: 38px;
  height: 21px;
  border-radius: 12px;
  background: #E0E1DD;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  display: inline-block;
}
.toggle-switch input {
  display: none;
}
.toggle-switch .slider {
  position: absolute;
  height: 20px;
  width: 19px;
  border-radius: 50%;
  background: #B8BDB6;
  left: 1.5px;
  top: 0.5px;
  transition: left 0.22s, background 0.18s;
}
.toggle-switch input:checked + .slider {
  left: 18px;
  background: #F5BB00;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal-footer button {
  background: #E0E1DD;
  color: #1B263B;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 1rem;
  min-width: 96px;
  font-weight: 600;
}
.cookie-modal-footer .cookie-accept {
  background: #F5BB00;
  color: #1B263B;
}
.cookie-modal-footer .cookie-accept:hover {
  background: #1B263B;
  color: #F5BB00;
}
.cookie-modal-footer .cookie-cancel {
  background: #E0E1DD;
  color: #1B263B;
}
.cookie-modal-footer .cookie-cancel:hover {
  background: #B8BDB6;
  color: #F5BB00;
}
@media (max-width: 420px) {
  .cookie-modal {
    padding: 10px 5px 10px 5px;
  }
  .cookie-modal-footer {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* UTILITIES */
.text-section {
  margin-bottom: 12px;
}
.text-section ul {
  padding-left: 19px;
}
.text-section li {
  margin-bottom: 6px;
}

/* SUCCESS / THANK YOU PAGE */
.text-section .cta-button {
  margin-top: 16px;
}

/* HOVER & MICRO-ANIMATIONS */
.card, .feature-grid li, .service-list li {
  transition: box-shadow 0.17s, background 0.17s;
}
.card:hover, .feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 4px 16px rgba(62,65,80,0.13);
}

/* MISCELLANEOUS */
hr {
  border: none;
  border-top: 1px solid #E0E1DD;
  margin: 36px 0;
}

::-webkit-input-placeholder { color: #9BA9B4; }
::-moz-placeholder { color: #9BA9B4; }
:-ms-input-placeholder { color: #9BA9B4; }
::placeholder { color: #9BA9B4; }

/* SCROLLBAR FOR MODALS, etc. */
.cookie-modal, .mobile-menu {
  scrollbar-width: thin;
  scrollbar-color: #E0E1DD #fff;
}
.cookie-modal::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  width: 6px;
  background: #fff;
}
.cookie-modal::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
  background: #E0E1DD;
  border-radius: 4px;
}

/* END OF STYLE.CSS */