/*=============== CSS 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, menu, 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, 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 {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F8FAF9;
  color: #213A5A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  transition: background 0.3s;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus{
  outline: 2px solid #5DB8EA;
  outline-offset: 2px;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*=============== BRAND FONT IMPORTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

/*=============== SCANDINAVIAN CLEAN COLORS ===============*/
:root {
  --color-primary: #213A5A;
  --color-secondary: #5DB8EA;
  --color-accent: #FFDE59;
  --color-bg: #F8FAF9;
  --color-paper: #FFFFFF;
  --color-subtle: #E7ECEF;
  --color-shadow: rgba(33, 58, 90, 0.06);
  --color-shadow-strong: rgba(33, 58, 90, 0.11);
  --color-text: #213A5A;
  --color-text-light: #41749F;
  --color-muted: #829AB1;
  --color-link: #5DB8EA;
  --color-success: #A3C648;
  --color-danger: #DB5755;
}

/*=============== TYPOGRAPHY ===============*/
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  line-height: 1.13;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: var(--color-primary);
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.19;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.325rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}
p, .text-section p, li, .subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}
.strong, strong {
  font-weight: 700;
}

.subheadline {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.text-section {
  max-width: 760px;
  margin: 0 auto;
}

/*=============== LAYOUT STRUCTURE ===============*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-paper);
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 28px 28px 22px 28px;
  transition: box-shadow 0.2s;
}
.card:hover 
{
  box-shadow: 0 6px 22px var(--color-shadow-strong);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-paper);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  transition: box-shadow 0.18s, background 0.2s;
}
.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 1.18rem;
  letter-spacing: 1.2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*=============== SCANDINAVIAN ELEMENTS ===============*/
.hero-section {
  background: var(--color-paper);
  padding-top: 56px;
  padding-bottom: 38px;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 2px 18px 0 var(--color-shadow-strong);
  margin-bottom: 64px;
}
.features-section {
  margin-bottom: 60px;
}
.features-section ul, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  padding-left: 0;
}
.features-section li, .feature-grid li {
  background: var(--color-paper);
  border-radius: 18px;
  padding: 30px 22px 20px 22px;
  box-shadow: 0 2px 10px var(--color-shadow);
  min-width: 190px;
  max-width: 250px;
  flex: 1 1 210px;
  margin-bottom: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.features-section li:hover, .feature-grid li:hover {
  box-shadow: 0 6px 22px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.02);
}
.features-section li img, .feature-grid li img {
  width: 38px;
  margin-bottom: 10px;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services-list li {
  background: var(--color-paper);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 20px;
}

/*=============== CASE STUDY CARDS ===============*/
.project-card {
  background: var(--color-paper);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
}
.case-studies-section .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/*=============== CTA BUTTONS & LINKS ===============*/
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 13px 38px;
  border-radius: 32px;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(33,58,90,0.04);
  border: none;
  background: var(--color-secondary);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta.secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta:hover, .cta:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 16px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.02);
}

/*=============== HEADER & NAVIGATION ===============*/
header {
  background: var(--color-paper);
  box-shadow: 0 2px 16px var(--color-shadow);
  border-radius: 0 0 30px 30px;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 8px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a.cta {
  background: var(--color-secondary);
  color: #fff;
  padding: 8px 24px;
  margin-left: 14px;
  border-radius: 20px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-subtle);
  color: var(--color-secondary);
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 10px;
  line-height: 1.1;
  border-radius: 8px;
  z-index: 50;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-subtle);
}

/*=============== MOBILE MENU SLIDE-IN ===============*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg);
  box-shadow: 0 0 32px var(--color-shadow-strong);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.94,-0.07, 0.53, 1.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2.1rem;
  margin: 28px 0 18px 28px;
  align-self: flex-start;
  cursor: pointer;
  line-height: 1;
  border-radius: 8px;
  padding: 4px 10px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-subtle);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 6px 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-subtle);
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-subtle);
  color: var(--color-secondary);
}

/*======= HIDE/SHOW NAV ON SCREEN SIZE ======*/
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/*=============== FOOTER ===============*/
footer {
  background: var(--color-paper);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 14px var(--color-shadow-strong);
  padding: 36px 0 18px 0;
  margin-top: 45px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 2px;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--color-muted);
  padding: 4px 9px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-subtle);
  color: var(--color-primary);
}
.social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 2px;
}
.social-links img {
  width: 28px;
  height: 28px;
  opacity: 0.92;
  filter: grayscale(30%);
  transition: filter 0.18s, opacity 0.16s;
  cursor: pointer;
}
.social-links img:hover {
  filter: none;
  opacity: 1;
}
.brand-info {
  color: var(--color-muted);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

/*=============== FAQ / LEGAL / THANK YOU LAYOUTS ===============*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
}
.faq-list li {
  background: var(--color-paper);
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 20px;
}
.legal-section .text-section,
.thank-you-section .text-section {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-paper);
  padding: 32px 36px;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.map-snippet {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 22px 0 22px 0;
}
.map-snippet img {
  max-width: 260px;
}
.contact-teaser {
  background: var(--color-subtle);
  border-radius: 10px;
  padding: 18px 18px 14px 18px;
  margin-top: 18px;
  color: var(--color-primary);
  font-weight: 500;
}

/*=============== SPACING & FLEX UTILS ===============*/
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }
/* add more if needed */

/*=============== COOKIE CONSENT BANNER ===============*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-paper);
  box-shadow: 0 -2px 16px var(--color-shadow-strong);
  padding: 26px 20px 18px 20px;
  z-index: 1300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 28px 28px 0 0;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(0.68,0.03,0.38,1.12), opacity 0.26s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  color: var(--color-primary);
  max-width: 580px;
  font-size: 0.98rem;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 28px;
  padding: 9px 24px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.17s;
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 1px 4px var(--color-shadow);
}
.cookie-btn.secondary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.2px solid var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 16px var(--color-shadow-strong);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

/*============== COOKIE MODAL POPUP ================*/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,58,90,0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1400;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--color-paper);
  border-radius: 22px;
  box-shadow: 0 8px 32px var(--color-shadow-strong);
  padding: 38px 28px 26px 28px;
  min-width: 320px;
  max-width: 98vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 18px;
  background: var(--color-subtle);
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
  outline: none;
  border: none;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--color-secondary);
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: left 0.2s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-slider {
  left: 24px;
}

/*Essential cookies always active*/
.cookie-category.essential .cookie-toggle {
  background: var(--color-success);
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle-slider {
  background: #fff;
}

.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.59rem;
  color: var(--color-muted);
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
  z-index: 5;
  padding: 4px 7px;
  border-radius: 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-subtle);
  color: var(--color-primary);
}

/*=============== MISCELLANEOUS ===============*/
::-webkit-scrollbar {
  width: 11px;
  background: var(--color-paper);
}
::-webkit-scrollbar-thumb {
  background: var(--color-subtle);
  border-radius: 8px;
  border: 3px solid var(--color-paper);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/*============= SPACING – GLOBAL CONSISTENCY =============*/
section {
  margin-bottom: 60px;
}

@media (max-width: 1150px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 910px) {
  .project-card, .testimonial-card {
    max-width: 100%;
    min-width: 210px;
  }
}

@media (max-width: 900px) {
  .features-section ul, .feature-grid, .testimonials-section .content-wrapper, .case-studies-section .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.38rem;
  }
  .section, section {
    padding: 28px 6px;
    margin-bottom: 44px;
  }
  .features-section ul, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero-section {
    border-radius: 0 0 25px 25px;
    padding-top: 28px;
    padding-bottom: 24px;
    margin-bottom: 38px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .about-section .content-wrapper {
    padding: 0 2px;
  }
  .map-snippet img {
    max-width: 95vw;
  }
  .testimonial-card,
  .project-card,
  .services-list li,
  .faq-list li {
    padding: 18px 8px;
  }
  .legal-section .text-section,
  .thank-you-section .text-section {
    padding: 16px 3vw;
    border-radius: 12px;
  }
}

@media (max-width: 520px) {
  header .container {
    flex-direction: row;
    padding: 12px 8px;
    gap: 0;
  }
  .logo img {
    height: 38px;
  }
  .brand-info {
    font-size: 0.89rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    border-radius: 19px 19px 0 0;
    padding: 16px 6px 12px 6px;
  }
  .cookie-banner__buttons {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-nav {
    font-size: 0.99rem;
    gap: 5.5px;
  }
}

/*=============== HOVERS, TRANSITIONS, MICRO-INTERACTIONS ===============*/
.card, .testimonial-card, .project-card,
.features-section li, .feature-grid li, .services-list li, .faq-list li {
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .project-card:hover, .testimonial-card:hover,
.features-section li:hover, .feature-grid li:hover, .services-list li:hover, .faq-list li:hover {
  box-shadow: 0 8px 28px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.015);
}

.cta, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.17s, transform 0.15s;
}
.cta:hover, .cta:focus,
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 8px 28px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.03);
}

a.cta.secondary {
  border: 2px solid var(--color-secondary);
}
a.cta.secondary:hover, a.cta.secondary:focus {
  background: var(--color-secondary);
  color: #fff;
}

.testimonial-card strong, .project-card strong {
  color: var(--color-text-light);
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

dd, dt {
  margin-bottom: 8px;
}
hr {
  border: none;
  border-top: 1px solid var(--color-subtle);
  margin: 36px 0;
}

/*=============== FORMS ===============*/
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1.2px solid var(--color-subtle);
  border-radius: 7px;
  padding: 11px 12px;
  margin-bottom: 18px;
  background: #fff;
  color: var(--color-primary);
  width: 100%;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  outline: none;
}
label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* Hide spurious outlines except for accessibility */
button, a, .cta, .cookie-btn, .cookie-btn:focus {
  outline: none;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Avoid overlapping for flex-wrapped containers */
.features-section ul, .feature-grid, .card-container, .content-grid, .testimonials-section .content-wrapper, .case-studies-section .content-wrapper {
  gap: 24px 24px !important;
}

/*****************************
  FINISHED SCANDINAVIAN THEME 
******************************/