/* ========================================================
  VividHall Digital | Scandinavian Clean CSS 
  Mobile-first, fully flexbox layouts | No CSS Grid
  ======================================================== */

/* ------------------------
   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, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2F7FA;
  color: #183041;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #22537A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18B484;
  outline: none;
}
ul, ol {
  margin: 16px 0;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}

/* ------------------------
   TYPOGRAPHY
--------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #183041;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem; /* 37px */
  margin-bottom: 16px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
}
p, .subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #22537A;
  margin-bottom: 12px;
  font-size: 1rem;
}
.subheadline {
  color: #22537A;
  font-size: 1.14rem;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Spacing helpers */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ------------------------
   HEADER & MAIN NAV
--------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #e4edef;
  box-shadow: 0 2px 12px rgba(34,83,122,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 38px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #183041;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  position: relative;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover:not(.btn-primary),
.main-nav a:focus:not(.btn-primary) {
  background: #f2f7fa;
}
.main-nav .btn-primary {
  background: #22537A;
  color: #fff;
  padding: 9px 22px;
  border-radius: 26px;
  font-weight: bold;
  margin-left: 16px;
  box-shadow: 0 2px 6px rgba(34,83,122,0.08);
  transition: background 0.18s, transform 0.18s;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #18B484;
  color: #fff;
  transform: translateY(-1px) scale(1.035);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #22537A;
  cursor: pointer;
  margin-left: 14px;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f2f7fa;
}

/* ------------------------
   MOBILE MENU
--------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(34, 83, 122, 0.94);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.86,-0.2,.19,1.12);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  margin: 24px 26px 10px auto;
  cursor: pointer;
  padding: 6px 13px;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(242, 247, 250, 0.16);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.5rem;
  padding: 24px 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  padding: 12px 0 11px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(24, 180, 132, 0.15);
  color: #18B484;
}
.mobile-nav .btn-primary {
  background: #18B484;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 18px;
  padding: 12px 12px;
  width: 100%;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(24,180,132,0.07);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mobile-nav .btn-primary:hover, .mobile-nav .btn-primary:focus {
  background: #22537A;
  color: #fff;
  transform: scale(1.02);
}

/* -------------------------
   HERO SECTIONS
----------------------------- */
.hero {
  background: #F2F7FA;
  display: flex;
  flex-direction: column;
}
.hero .container {
  padding-top: 38px;
  padding-bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 14px;
}

/* -------------------------
   CTA SECTIONS
----------------------------- */
.cta-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 14px rgba(24,48,65,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cta-section h2 {
  color: #22537A;
}

/* -------------------------
   SECTIONS & FEATURES
----------------------------- */
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34,83,122,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 14px;
}
.feature {
  background: #F2F7FA;
  border-radius: 16px;
  padding: 26px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 1px 6px rgba(34,83,122,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 20px rgba(34,83,122,0.17);
  transform: translateY(-2px) scale(1.01);
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/* Service Preview / List (on index, services pages) */
.services-preview, .services {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(34,83,122,0.04);
  padding: 40px 20px;
}
.service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 14px 0;
}
.service, .service-detail {
  background: #F2F7FA;
  border-radius: 13px;
  flex: 1 1 260px;
  min-width: 230px;
  padding: 23px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 1px 6px rgba(34,83,122,0.04);
  transition: box-shadow 0.18s, transform 0.17s;
}
.service:hover, .service-detail:hover {
  box-shadow: 0 4px 18px rgba(34,83,122,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* Blog post list */
.blog-list {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(34,83,122,0.04);
  padding: 40px 20px;
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post {
  background: #F2F7FA;
  border-radius: 13px;
  flex: 1 1 280px;
  min-width: 230px;
  padding: 18px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 1px 5px rgba(34,83,122,0.04);
  transition: box-shadow 0.18s, transform 0.17s;
}
.post:hover, .post:focus-within {
  box-shadow: 0 4px 16px rgba(34,83,122,0.11);
  transform: translateY(-1px) scale(1.02);
}
.post a {
  color: #18B484;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.16s;
}
.post a:hover, .post a:focus {
  color: #22537A;
  text-decoration: underline;
}

/* Case Studies Detail */
.case-studies {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(34,83,122,0.04);
  padding: 40px 20px;
}
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #F2F7FA;
  border-radius: 14px;
  flex: 1 1 270px;
  min-width: 230px;
  padding: 22px 16px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 5px rgba(34,83,122,0.04);
  transition: box-shadow 0.18s, transform 0.17s;
}
.case-study:hover, .case-study:focus-within {
  box-shadow: 0 4px 14px rgba(34,83,122,0.10);
  transform: translateY(-1.5px) scale(1.01);
}

/* Process steps (used in features section on case study page) */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  margin-top: 20px;
}
.process-step {
  background: #F2F7FA;
  border-radius: 14px;
  flex: 1 1 185px;
  min-width: 185px;
  padding: 18px 12px 16px 13px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(34,83,122,0.04);
  transition: box-shadow 0.18s, transform 0.17s;
}
.process-step:hover, .process-step:focus-within {
  box-shadow: 0 4px 10px rgba(34,83,122,0.10);
  transform: translateY(-1.5px) scale(1.01);
}
.process-step img {
  width: 32px; height: 32px; margin-bottom: 8px;
}

/* -------------------------
   TESTIMONIALS
----------------------------- */
.testimonials {
  background: #F2F7FA;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(34,83,122,0.03);
}
.testimonials .content-wrapper {
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px rgba(34,83,122,0.07);
  color: #183041;
  min-width: 0;
  max-width: 710px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #22537A;
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card p {
  color: #183041;
  font-size: 1.1rem;
  margin: 0;
}

/* -------------------------
   LEGAL & INFO CONTENT
---------------------------- */
.legal-content {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 60px;
  box-shadow: 0 1px 8px rgba(34,83,122,0.05);
  padding: 40px 20px;
}

/* -------------------------
   CONTACT INFO & FORM
---------------------------- */
.contact-info {
  background: #F2F7FA;
  border-radius: 14px;
  margin-bottom: 32px;
  box-shadow: 0 1px 6px rgba(34,83,122,0.04);
  padding: 32px 18px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-info li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 1.05rem;
  color: #183041;
}

.contact-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(34,83,122,0.05);
  margin-bottom: 36px;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* (Contact input fields would go here for actual forms) */
.form-info, .info-block {
  background: #f2f7fa;
  border-radius: 9px;
  padding: 17px 14px;
  margin-bottom: 12px;
  font-size: 0.97rem;
}

/* ------------------------
   CARD CONTAINERS
-------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(34,83,122,0.06);
  padding: 22px 16px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.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;
}

/* ------------------------
   BUTTONS
-------------------------- */
.btn-primary {
  display: inline-block;
  background: #22537A;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 11px 32px;
  border-radius: 32px;
  box-shadow: 0 3px 14px rgba(34,83,122,0.09);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #18B484;
  color: #fff;
  outline: none;
  transform: translateY(-1.5px) scale(1.033);
  box-shadow: 0 6px 26px rgba(24,180,132,0.13);
}
.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #22537A !important;
  border: 2px solid #22537A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 10px 27px;
  border-radius: 29px;
  box-shadow: 0 1px 8px rgba(24,48,65,0.04);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 7px;
  margin-bottom: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f2f7fa;
  color: #18B484 !important;
  border-color: #18B484;
  outline: none;
}

/* ------------------------
   FOOTER
-------------------------- */
footer {
  background: #183041;
  color: #fff;
  padding-top: 42px;
  padding-bottom: 6px;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-wrapper > a img {
  height: 36px;
  margin-right: 0;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-legal a {
  color: #f2f7fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  opacity: .93;
  transition: color 0.16s, opacity 0.13s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #18B484;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-item {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 1rem;
  white-space: normal;
}
.contact-item img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 2px;
}
.footer-bottom {
  text-align: center;
  color: #F2F7FA;
  font-size: 0.99rem;
  opacity: .78;
  margin-top: 20px;
}

/* ------------------------
   THANK YOU PAGE
-------------------------- */
.thank-you {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(34,83,122,0.04);
  margin-bottom: 60px;
  padding: 54px 20px 36px 20px;
  text-align: center;
}
.thank-you .btn-primary {
  margin-top: 16px;
}

/* ------------------------
   COOKIE CONSENT BANNER
-------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #183041;
  color: #f2f7fa;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 18px 22px 20px;
  z-index: 50000;
  box-shadow: 0 -2px 16px rgba(24,48,65,0.09);
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.28s, transform 0.33s cubic-bezier(.74,.1,.2,1.15);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  font-size: 1.03rem;
  max-width: 580px;
  margin-right: 26px;
  color: #f2f7fa;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #18B484;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 9px rgba(24,180,132,0.07);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #22537A;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #183041;
  border: 1px solid #22537A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #18B484;
  color: #fff;
  border: 1px solid #18B484;
}
.cookie-btn.settings {
  background: #f2f7fa;
  color: #183041;
  border: 1px solid #18B484;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #18B484;
  color: #fff;
  border: 1px solid #18B484;
}

/* Cookie settings modal */
.cookie-modal-bg {
  position: fixed;
  z-index: 50001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,48,65,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s 0.07s;
}
.cookie-modal-bg.active {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(24,83,122,0.14);
  padding: 32px 22px 22px 28px;
  max-width: 480px;
  min-width: 270px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(.98);
  pointer-events: none;
  transition: opacity 0.24s, transform 0.24s cubic-bezier(.77,.12,.2,1.07);
}
.cookie-modal-bg.active .cookie-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #22537A;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #f2f7fa;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 9px;
  color: #22537A;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e4edef;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #183041;
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #e5ecef;
  position: relative;
  transition: background 0.2s;
  margin-left: 12px;
  display: inline-block;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 1px;
  top: 1px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(34,83,122,0.12);
  transition: left 0.2s, background 0.16s;
}
.cookie-toggle input:checked + .slider {
  left: 19px;
  background: #18B484;
}
.cookie-toggle input:checked ~ .cookie-toggle {
  background: #18B484;
}
.cookie-modal .cookie-category .always-on {
  color: #18B484;
  font-size: 1rem;
  font-weight: 600;
}

/* -------------------------
   MEDIA QUERIES
---------------------------- */
@media (max-width: 1080px) {
  .container {
    max-width: 920px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .footer-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .features, .services-preview, .services, .blog-list, .legal-content, .about, .case-studies, .cta-section, .thank-you, .testimonials, .contact-info, .contact-form {
    padding: 27px 7px;
    border-radius: 9px;
  }
  .feature-grid, .feature-list, .service-list, .case-study-grid, .post-list, .process-steps {
    flex-direction: column;
    gap: 17px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 23px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 8px 18px 10px;
  }
  .cookie-banner .cookie-text, .cookie-banner .cookie-actions {
    margin-right: 0;
  }
}
@media (max-width: 510px) {
  .container, .section {
    padding-left: 4px; padding-right: 4px;
  }
  h1 { font-size: 1.27rem; }
}
/* -------------------------
   MICRO-INTERACTIONS
---------------------------- */
a, .btn-primary, .btn-secondary, .cookie-btn {
  transition: color 0.17s, background 0.17s, border 0.16s, box-shadow 0.17s, transform 0.17s;
}
.feature, .service, .card, .testimonial-card, .case-study, .process-step, .service-detail, .post {
  transition: box-shadow 0.19s, transform 0.18s;
}

/* Subtle focus outline for accessibility */
a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #18B484;
  outline-offset: 2px;
}

/* Hide focus for mouse interaction, only show on keyboard nav */
:focus:not(:focus-visible) {
  outline: none;
}

/* -------------------------
   SCANDINAVIAN CLEAN EXTRAS
---------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ===============
   END OF FILE
================= */
