/* RESET & BASE TYPOGRAPHY (Normalize & Reset) */
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,
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;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F7F9FA;
  color: #222;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  background: #F7F9FA;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #114477;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18836B;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
hr {
  border: none;
  border-top: 1px solid #EFF3F5;
  margin: 32px 0;
}


/* BRAND COLORS */
:root {
  --color-primary: #114477;
  --color-secondary: #FFFFFF;
  --color-accent: #18836B;
  --color-link: #114477;
  --color-bg: #F7F9FA;
  --color-muted: #E6EBF0;
  --color-heading: #172635;
  --color-shadow: rgba(30,40,60,0.08);
  --color-cookie-bg: #222832ee;
  --color-success: #21B094;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1260px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTIONS (Spacing & Layout) */
section {
  background: var(--color-secondary);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: box-shadow 0.2s;
}
@media (max-width: 640px) {
  section {
    padding: 28px 8px;
  }
}

/* HEADERS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.15rem;
  color: #374658;
  margin-bottom: 20px;
  font-weight: 400;
}
.legal-text {
  font-size: 0.98rem;
  color: #314051;
  background: #F7F9FA;
  padding: 24px 20px;
  margin: 12px 0 0 0;
  border-radius: 10px;
}
.thank-you-message {
  font-size: 1.15rem;
  color: #2C393F;
}
.next-steps-info {
  margin: 18px 0;
  background: #F3F5F7;
  border-radius: 8px;
  padding: 16px 20px;
}

/* BUTTONS */
.cta-btn,
button,
input[type="submit"] {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 12px 36px;
  border-radius: 28px;
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--color-accent);
  box-shadow: 0 4px 18px 0 var(--color-shadow);
  color: #fff;
}
/* Links look like buttons if needed */
a.cta-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

/* MAIN NAVIGATION (Header) */
header {
  background: #fff;
  box-shadow: 0 1px 8px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  padding: 14px 0;
}
.main-nav a {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 22px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-link);
  background: none;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta-btn {
  background: var(--color-accent);
  color: #fff;
  margin-left: 12px;
}
.main-nav a.cta-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F3F8FB;
  color: var(--color-accent);
}
.main-nav img {
  height: 36px;
  margin-right: 0;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  margin-left: auto;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover {
  background: #F0F6F6;
  color: var(--color-accent);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1);
  box-shadow: -8px 0 20px 0 rgba(0,0,0,0.08);
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 20px 24px 8px auto;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
  padding: 8px 12px;
}
.mobile-menu-close:hover {
  background: #F0F4F8;
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 32px 32px 32px;
  gap: 16px;
  min-width: 230px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 700;
  padding: 12px 0 12px 6px;
  width: 100%;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EFF9F8;
  color: var(--color-accent);
}
@media (max-width:1050px) {
  .main-nav a {
    font-size: 0.97rem;
    padding: 7px 12px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.95rem;
    padding: 7px 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 11px;
    right: 18px;
    z-index: 1010;
  }
  header {
    min-height: 64px;
    position: relative;
  }
}

/* FLEXBOX LAYOUT PATTERNS */
.features-grid,
.services-list,
.article-list,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.features-grid > li,
.services-list > li,
.article-list > li {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #F7F9FB;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px 0 var(--color-shadow);
  padding: 28px 24px 22px 24px;
  min-width: 240px;
  max-width: 360px;
  margin-bottom: 18px;
  transition: box-shadow 0.19s;
}
.features-grid > li:hover,
.services-list > li:hover,
.article-list > li:hover {
  box-shadow: 0 5px 18px -3px var(--color-shadow);
}
@media (max-width:900px){
  .features-grid,
  .services-list,
  .article-list {
    gap: 14px;
  }
  .features-grid > li,
  .services-list > li,
  .article-list > li {
    min-width: 90%;
    max-width: 100%;
    padding: 22px 10px 15px 16px;
  }
}
@media (max-width:600px) {
  .features-grid,
  .services-list,
  .article-list {
    flex-direction: column;
    gap: 10px;
  }
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px 0 var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 5px 18px -3px var(--color-shadow);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 26px;
  background: #F6FCFA;
  border: 1.5px solid #E8F2EA;
  border-radius: 16px;
  box-shadow: 0 2px 12px -2px var(--color-shadow);
  margin-bottom: 20px;
  max-width: 650px;
  min-width: 220px;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px -4px var(--color-shadow);
  border-color: var(--color-accent);
}
.testimonial-card p {
  color: #213533;
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.testimonial-author {
  color: #18836B;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

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

.text-section, .contact-details {
  margin-bottom: 24px;
}
.contact-details {
  font-size: 1.03rem;
  color: #174051;
  margin-bottom: 18px;
  padding-left: 0;
}
.contact-details li {
  margin-bottom: 8px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F8FBFF;
  padding: 15px 18px 12px 18px;
  border-radius: 11px;
}
.map-placeholder img {
  width: 72px;
}
.map-placeholder p {
  color: #213547;
}

/* FAQ ACCORDION (simple open/close) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F6F8FF;
  border-left: 5px solid var(--color-primary);
  border-radius: 8px;
  padding: 16px 22px 16px 20px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}
.faq-item h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 0.98rem;
  margin: 0;
  color: #213551;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 27px 0 18px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 3.5px 12px -10px var(--color-shadow);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid #EEF1F6;
}
.pricing-table th {
  background: #F4F7FA;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.04rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width:900px) {
  .pricing-table th, .pricing-table td {
    padding: 11px 7px;
    font-size: 0.99rem;
  }
}

.pricing-notes {
  background: #F6FCFC;
  border-radius: 8px;
  color: #235;
  padding: 10px 12px 10px 17px;
  font-size: 0.97rem;
  margin-top: 10px;
}
.pricing-notes ul li {
  margin-bottom: 6px;
}

.service-price {
  font-size: 1.03rem;
  color: var(--color-success);
  font-weight: 700;
  margin-top: 8px;
  display: block;
}

/* Footer */
footer {
  background: #F6FAFB;
  border-top: 1px solid #E2EBEF;
  padding: 38px 0 0 0;
  margin-top: 36px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.company-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #273143;
  font-size: 1rem;
}
.company-info img {
  width: 46px;
  margin-bottom: 8px;
}
.footer-nav {
  flex: 2 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-nav a {
  font-size: 0.98rem;
  color: var(--color-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 3px 0;
  margin-right: 14px;
  border-radius: 4px;
  transition: color 0.16s, background 0.16s;
}
.footer-nav a:hover {
  color: var(--color-accent);
  background: #F0F7F7;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 20px 0 9px 0;
  font-size: 0.93rem;
  color: #62708F;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
  }
}
@media (max-width: 650px) {
  .footer-bottom {
    padding-top: 10px;
    font-size: 0.95rem;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: var(--color-cookie-bg);
  color: #fff;
  box-shadow: 0 -2px 24px rgba(18,22,38,0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 20px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  opacity: 1;
  animation: cookieFadeIn 0.5s;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: none; }
}
.cookie-consent-banner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 1.02rem;
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-actions button {
  min-width: 130px;
  padding: 11px 20px;
  border-radius: 24px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  border: none;
  font-size: 1rem;
  margin: 0;
  box-shadow: 0 1px 5px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-actions button:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-actions .cookie-settings-btn {
  background: transparent;
  color: #fff;
  border: 1.6px solid #fff;
}
.cookie-actions .cookie-settings-btn:hover {
  background: #165;
  color: #fff;
  border-color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.99rem;
    padding: 16px 10px;
  }
  .cookie-actions button {
    min-width: 90px;
    font-size: 0.96rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 3200;
  background: rgba(14,18,28,0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
  opacity: 1;
  animation: cookieModalFadeIn 0.43s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 12px 44px -3px rgba(20,24,38,0.12);
  width: 96%;
  max-width: 430px;
  padding: 36px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-accent);
  cursor: pointer;
  border-radius: 50%;
  padding: 4.5px 12px 2.5px 12px;
  transition: background 0.14s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #EFF8F7;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--color-accent);
  border-radius: 5px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #1C272F;
  font-weight: 600;
}
.cookie-category.essential label {
  color: #999;
  text-decoration: underline;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: var(--color-muted);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  min-width: 110px;
  padding: 10px 14px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: var(--color-accent);
}
.cookie-modal .cookie-modal-actions .cookie-modal-cancel {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-modal .cookie-modal-actions .cookie-modal-cancel:hover {
  background: #F6FCFA;
}

/* Micro-animations */
.cta-btn, button, input[type="submit"] {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.cta-btn:active, .cookie-actions button:active, button:active {
  transform: scale(0.97);
}
.features-grid > li:hover, .services-list > li:hover {
  transform: translateY(-3px) scale(1.01);
}

/* Responsive Typography */
@media (max-width: 680px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .subheadline, .thank-you-message { font-size: 1.01rem; min-width: 0; }
}

/* Accessibility & Focus */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Miscellaneous */
::-webkit-input-placeholder { color: #B9C8D8; }
::-moz-placeholder { color: #B9C8D8; }
:-ms-input-placeholder { color: #B9C8D8; }
::placeholder { color: #B9C8D8; }

/* Hide visually but accessible for menus/modal overlays */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* Table Responsive (Pricing) */
@media (max-width: 680px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tr {
    border-bottom: 1.4px solid #E9EEF1;
    margin-bottom: 6px;
  }
  .pricing-table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: none;
    position: relative;
  }
  .pricing-table td:before {
    content: attr(data-label)":";
    font-weight: 700;
    color: #8B97A7;
    display: block;
    margin-bottom: 3px;
  }
}

/* Cards in article-list */
.article-list a {
  color: var(--color-accent);
  text-decoration: underline;
  font-size: 1.01rem;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}
.article-list a:hover { color: var(--color-primary); }

/* Hide unnecessary scrollbars in modals/menus */
.mobile-menu, .cookie-modal-overlay { overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }

/* Scandinavian cleanliness */
.features-grid > li, .services-list > li, .testimonial-card, .faq-item {
  border: 1.5px solid #EBEFF1;
  background: #F8FAFB;
}

/* Utility classes */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.show {
  display: flex !important;
}
.hide {
  display: none !important;
}
