/* --------------------- CSS RESET & NORMALIZATION --------------------- */
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, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', serif;
  background: #F8F7F3;
  color: #2B2B2B;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #195176;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  transition: background .2s, color .2s;
}
/* -------------------- Typography (Elegant Classic) -------------------- */
:root {
  --font-display: 'Montserrat', 'Georgia', serif;
  --font-body: 'Roboto', 'Georgia', serif;
  --brand-primary: #195176;
  --brand-secondary: #EAEFF2;
  --brand-white: #ffffff;
  --brand-accent: #F5AC3D;
  --color-dark: #2B2B2B;
  --color-muted: #E6E1DA;
  --shadow-card: 0 2px 12px 0 rgba(25, 81, 118, 0.06);
  --radius-lg: 14px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --section-bg: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.625rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.38rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p, li, blockquote {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.7;
  font-weight: 400;
}
blockquote {
  font-style: italic;
  font-family: var(--font-display);
  color: #333952;
  background: var(--color-muted);
  border-left: 4px solid var(--brand-accent);
  margin: 0 0 8px 0;
  padding: 14px 20px 8px 24px;
  border-radius: var(--radius-md);
}
strong {
  font-weight: 600;
}

/* ------------------- General Container & Section Spacing ------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius-lg);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}

/* -------------------------- Navigation & Header -------------------------- */
header {
  background: var(--brand-white);
  border-bottom: 1px solid #E4E1DA;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
  padding: 0 20px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
}
header nav a:hover,
header nav a.active {
  background: var(--brand-primary);
  color: var(--brand-white);
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-white) !important;
  border-radius: var(--radius-md);
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px 0 rgba(25,81,118,0.10);
  border: none;
  transition: background .2s, box-shadow .2s;
  margin-left: 10px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #143d59;
  box-shadow: 0 6px 18px 0 rgba(25,81,118,0.18);
  color: var(--brand-accent) !important;
}
.btn-secondary {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border-radius: var(--radius-md);
  padding: 8px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  transition: background .2s, color .2s;
  margin-top: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e59d20;
  color: #fff !important;
}
header .btn-primary {
  margin-left: auto;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--brand-primary);
  font-size: 2rem;
  padding: 6px 10px;
  margin-left: 16px;
  border-radius: var(--radius-md);
  border: 1px solid #dee5ec;
  transition: background .2s, box-shadow .2s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  box-shadow: 0 2px 4px 0 rgba(60,60,60,0.06);
}

/* ------------------- Mobile Burger Menu Overlay -------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  background: rgba(40,50,60,.85);
  z-index: 200;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform .35s cubic-bezier(.75,0,.23,1);
  transform: translateX(100vw);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu .35s cubic-bezier(.46,.03,.52,.96);
}
@keyframes slideInMenu {
  from { transform: translateX(100vw); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  font-size: 2rem;
  color: var(--brand-primary);
  border: 1px solid #dee5ec;
  padding: 4px 16px 7px 16px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: var(--brand-white);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0 0 38px;
}
.mobile-menu nav.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.010em;
  color: var(--brand-white);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: color .2s;
}
.mobile-menu nav.mobile-nav a:hover {
  color: var(--brand-accent);
}

/* ------------------------- HERO & GENERAL SECTIONS ------------------------- */
.hero {
  background: linear-gradient(120deg, #EAEFF2 60%, #F8F7F3);
  padding: 56px 0 46px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
  line-height: 1.12;
}
.hero p {
  color: #435067;
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.hero .btn-primary {
  margin-top: 10px;
}

/* ------------------------- Features & Grid Cards ------------------------- */
.features-grid, .service-list, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card, .service-card, .project-card, .case-study {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: calc(33% - 16px);
  min-width: 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, transform .14s;
}
.feature-card:hover, .service-card:hover, .project-card:hover, .case-study:hover {
  box-shadow: 0 12px 32px 0 rgba(25, 81, 118, 0.13);
  transform: translateY(-3px) scale(1.02);
  z-index: 3;
}
.feature-card img, .service-card img, .usp-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-card h3, .service-card h3, .project-card h3, .case-study h3 {
  font-size: 1.23rem;
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.features-icons .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 26px;
  align-items: center;
  font-size: 1.08rem;
}
.features-icons .usp-list li {
  display: flex;
  align-items: center;
  color: #5b6c80;
  font-family: var(--font-display);
  gap: 10px;
}

.usp-list {
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style-position: inside;
  font-size: 1.05rem;
}
.usp-list li {
  color: #415067;
  font-style: normal;
  font-family: var(--font-body);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.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;
  margin-bottom: 40px;
}

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

/* ------------------------- Services Overview ------------------------- */
.services-overview .service-list {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.service-card {
  width: calc(33% - 16px);
  min-width: 245px;
}
.service-price {
  color: var(--brand-accent);
  font-weight: 500;
  font-size: 1.08rem;
  margin-top: 2px;
  margin-bottom: 7px;
}

/* ---------------------- Testimonials (Distinctive Cards) ---------------------- */
.testimonials-preview, .testimonials {
  background: #F8F7F3;
  padding: 46px 0 18px 0;
  margin-bottom: 52px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-white);
  box-shadow: 0 2px 14px 0 rgba(25, 81, 118, 0.10);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 20px;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  transition: box-shadow .18s;
}
.testimonial-card blockquote {
  color: #1F2530;
  font-size: 1.13rem;
  background: transparent;
  border-left: 4px solid var(--brand-accent);
  margin-bottom: 7px;
  padding-left: 18px;
  font-style: italic;
  border-radius: 0;
}
.testimonial-card p {
  color: #384e66;
  margin-top: 4px;
  font-size: 1rem;
}

/* Ensure proper color contrast for all testimonial texts */
.testimonial-card, .testimonial-card * {
  color: #162B3D;
}
.case-study {
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  width: 100%;
}
.case-study ul {
  margin-left: 0;
}

/* ------------------------------ CTA Styles ------------------------------ */
.cta {
  background: var(--brand-primary);
  color: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  margin-bottom: 60px;
}
.cta h2, .cta p, .cta ul {
  color: var(--brand-white);
}
.cta img {
  filter: brightness(0) invert(1);
}
.cta ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.cta .btn-primary {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  margin-top: 16px;
  box-shadow: 0 2px 10px 0 rgba(245,172,61,0.13);
}
.cta .btn-primary:hover {
  background: #d79d31;
  color: #fff !important;
}
.location a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.location a:hover { color: var(--brand-accent); }

/* -------------------------- Project Cards -------------------------- */
.project-card {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 18px 24px;
  margin-bottom: 20px;
  width: calc(33% - 16px);
  min-width: 245px;
  transition: box-shadow .1s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.project-card ul {
  margin-left: 0;
  font-size: 1.05rem;
  gap: 4px;
  color: #465060;
  font-family: var(--font-body);
}

/* ------------------- FAQ List / Collapsible Items ------------------- */
.faq-list .faq-item {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 6px 0 rgba(25, 81, 118, 0.10);
  padding: 22px 20px 18px 28px;
  margin-bottom: 20px;
  transition: box-shadow .15s;
}
.faq-list .faq-item h3 {
  color: var(--brand-primary);
  margin-bottom: 7px;
  font-size: 1.1rem;
}
.faq-list .faq-item p {
  color: #435067;
  font-size: 1.01rem;
}
.faq-hero {
  background: var(--brand-secondary);
  padding: 56px 0 36px 0;
  margin-bottom: 42px;
}

/* ------------------- Footer Layout ------------------- */
footer {
  background: #f6f6f4;
  border-top: 1px solid #d6d5d0;
  padding: 0 0 18px 0;
  font-size: 1rem;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 10px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 56px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}
footer nav a {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--brand-primary);
  transition: color .18s;
}
footer nav a:hover {
  color: var(--brand-accent);
}
footer .legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
  font-size: .99rem;
  margin-bottom: 8px;
}
footer .legal-links a {
  color: #576477;
  font-weight: 400;
}
footer .company-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: .98rem;
  color: #445462;
  max-width: 330px;
}
footer .company-info img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ------------------- Contact Page ------------------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}
.contact-list a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color .18s;
}
.contact-list a:hover {
  color: var(--brand-accent);
}

/* --------------------- Cookie Consent Banner --------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #26292D;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding: 30px 22px;
  z-index: 4000;
  box-shadow: 0 -3px 22px 0 rgba(25,81,118,0.11);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .5s, transform .3s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: slideInCookie .4s cubic-bezier(.45,0,.55,1);
}
@keyframes slideInCookie {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  max-width: 630px;
  font-size: 1.11rem;
  color: #f2f6f9;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  padding: 9px 20px;
  margin-left: 0;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
  transition: background .21s, color .21s;
}
.cookie-banner .cookie-accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-banner .cookie-accept:hover {
  background: #d79d31;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #2B2B2B;
  border: 1px solid #cacece;
}
.cookie-banner .cookie-reject:hover {
  background: #b9c9cc;
  color: #fff;
  border-color: #b9c9cc;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .cookie-settings:hover {
  background: #fff;
  color: var(--brand-primary);
}

/* --------------------- Cookie Preferences Modal --------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(22,33,40,0.63);
  z-index: 4050;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: var(--brand-white);
  color: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 38px 36px 30px 36px;
  position: relative;
  min-width: 375px;
  max-width: 98vw;
  max-height: 90vh;
  box-shadow: 0 9px 32px 0 rgba(25,81,118,0.17);
  animation: popInModal .23s cubic-bezier(.55,0,.45,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes popInModal {
  from { transform: scale(.89); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cookie-modal .modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cookie-modal .modal-header h2 {
  font-size: 1.55rem;
  color: var(--brand-primary);
}
.cookie-modal .modal-close {
  background: transparent;
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  border-radius: var(--radius-md);
  transition: background .18s, color .18s;
  padding: 3px 12px 3px 12px;
}
.cookie-modal .modal-close:hover {
  background: #EAEFF2;
  color: var(--brand-accent);
}
.cookie-modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 20px;
  appearance: none;
  background: #cfd8dc;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.07);
  position: relative;
  outline: none;
  transition: background .19s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: var(--brand-accent);
}
.cookie-modal .cookie-switch:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-white);
  box-shadow: 0 1px 3px 0 rgba(80,80,80,0.12);
  transition: transform .18s;
}
.cookie-modal .cookie-switch:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject {
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  padding: 9px 20px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.08);
}
.cookie-modal .cookie-accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-modal .cookie-accept:hover {
  background: #c48c26;
  color: #fff;
}
.cookie-modal .cookie-reject {
  background: #f1f1f1;
  color: #2B2B2B;
}
.cookie-modal .cookie-reject:hover {
  background: #cacbcc;
  color: #fff;
}

/* ------------- Media Queries (Mobile Responsive, Flexbox only) ------------- */
@media (max-width: 1024px) {
  .feature-card, .service-card, .project-card {
    width: calc(50% - 15px);
    min-width: 220px;
  }
}
@media (max-width: 850px) {
  .footer .content-wrapper {
    flex-direction: column;
    gap:24px;
  }
  .feature-card, .service-card, .project-card {
    width: 100%;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 10px;
    min-height: 50px;
  }
  .hero, .faq-hero {
    padding: 36px 0 20px 0;
  }
  .hero h1, .faq-hero h1 {
    font-size: 2rem;
  }
  h2 { font-size: 1.28rem; }
  h1 { font-size: 1.48rem; }
  .section { padding: 21px 10px; margin-bottom: 32px; }
  .feature-card, .service-card, .project-card {
    width: 100%;
    min-width: 0;
    padding: 20px 10px 14px 14px;
  }
  .features-icons .usp-list { gap: 13px; flex-direction: column; align-items: flex-start; }
  .testimonial-card, .case-study {
    padding: 15px 7px 14px 14px;
    max-width: 100%;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .cta {
    margin-bottom: 32px;
    padding: 19px 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .content-wrapper {
    gap: 16px;
  }
  .features-grid, .service-list, .card-container, .content-grid {
    gap: 13px;
  }
  .testimonial-card, .case-study {
    margin-bottom: 13px;
    padding: 14px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 6px;
    font-size: .99rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap:7px;
    width: 100%;
    align-items: stretch;
  }
  .cookie-modal .modal-content {
    min-width: 0;
    padding: 21px 8px 19px 8px;
  }
}
@media (max-width: 450px) {
  .container, header .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .case-study {
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero, .faq-hero { padding-left: 0; padding-right: 0; }
  .cookie-modal .modal-content { min-width: 0; font-size: 0.99rem; }
  .footer .company-info p {
    font-size: 0.91rem;
  }
}

/*---------------- Subtle Utility Animations & micro-interactions ---------------*/
.button, .btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal button {
  transition: background .18s, color .18s, transform .12s, box-shadow .19s;
}
.button:active, .btn-primary:active, .btn-secondary:active,
.cookie-banner button:active, .cookie-modal button:active {
  transform: scale(.97);
}
.feature-card:hover img, .service-card:hover img {
  filter: brightness(1.14) drop-shadow(0px 2px 7px #F5AC3D25);
  transition: filter .18s;
}

/*--- Utility for accessibility and spacing ---*/
.sr-only {position: absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); border:0;}

/*---- Spacing helpers for between elements (min 20px) ----*/
section + section, .section + .section {
  margin-top: 60px;
}

/*----------------- End of Elegant-Classic Flexbox CSS -------------------*/
