/* 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,
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.5;
  background: #fff;
  color: #222;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #1A365D;
  --color-secondary: #F1B434;
  --color-accent: #F6F8FB;
  --color-dark: #131a25;
  --color-white: #fff;
  --color-grey: #dce1e8;
  --color-shadow: rgba(26,54,93,0.08);
  --color-shadow-deep: rgba(26,54,93,0.14);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.8;
}
strong {
  font-weight: 700;
}

/* BUTTONS & LINKS */
.cta-primary, .btn, .cookie-btn {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 28px;
  border: none;
  outline: none;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  margin: 12px 0;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-primary:hover, .btn:hover, .cookie-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 24px var(--color-shadow-deep);
}
.cta-primary:focus, .btn:focus {
  outline: 2px solid var(--color-secondary);
}
a.cta-primary {
  text-decoration: none;
}

/* ACCENTUATED BUTTONS */
.btn-secondary {
  color: var(--color-primary);
  background: var(--color-secondary);
  border: none;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-no-bg {
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
}
.btn-no-bg:hover, .btn-no-bg:focus {
  color: var(--color-secondary);
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  position: relative;
  padding: 8px 2px;
  border-radius: 4px;
  transition: color 0.16s, background 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

header .cta-primary {
  margin-right: 6px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 28px;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.18s;
  z-index: 2000;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,54,93,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.55,0,.1,1);
  z-index: 4000;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: var(--color-secondary);
  background: transparent;
  font-size: 2.4rem;
  margin: 24px 24px 8px 0;
  border-radius: 40px;
  transition: color 0.18s;
  font-family: var(--font-display);
  align-self: flex-end;
}
.mobile-menu-close:focus{
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding: 0 32px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.01em;
  padding: 10px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(241,180,52,0.07);
}

/* Responsive - Hide/show nav and mobile menu */
@media (max-width: 1023px) {
  .main-nav,
  header .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, var(--color-accent) 60%, #fff 100%);
  box-shadow: 0 2px 16px var(--color-shadow);
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 900;
}
.hero p {
  color: var(--color-dark);
  font-size: 1.18rem;
  margin-bottom: 0;
}

/* SECTIONS LAYOUT SPACING */
.section,
.hero,
.features,
.services-overview,
.services-section,
.solutions-section,
.cta-section,
.about-section,
.timeline-section,
.values-section,
.industry-intro,
.industry-cases,
.resource-intro,
.faqs-section,
.downloads-section,
.contact-section,
.privacy-policy,
.gdpr-section,
.cookie-policy-section,
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section:last-child,
.hero:last-child {
  margin-bottom: 0;
}

/* FEATURES FLEX */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.feature {
  flex: 1 1 220px;
  min-width: 240px;
  background: var(--color-white);
  border-radius: 18px;
  padding: 32px 22px 28px 22px;
  box-shadow: 0 2px 20px var(--color-shadow);
  border: 1px solid var(--color-grey);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.15s, border 0.15s;
}
.feature:hover {
  box-shadow: 0 4px 28px var(--color-shadow-deep);
  border: 1.5px solid var(--color-secondary);
}
.feature img {
  height: 40px;
  width: 40px;
  margin-bottom: 6px;
}

/* SERVICES OVERVIEW & GRID */
.services-overview .service-list,
.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: space-between;
}
.services-overview .service-list > div,
.case-list > div { 
  flex: 1 1 260px;
  min-width: 240px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 28px 20px 18px 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
  transition: box-shadow 0.16s, border 0.16s;
}
.services-overview .service-list > div:hover,
.case-list > div:hover {
  box-shadow: 0 4px 24px var(--color-shadow-deep);
  border-left: 4px solid var(--color-primary);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service {
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 20px var(--color-shadow);
  padding: 36px 22px 28px 22px;
  border: 1px solid var(--color-grey);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.15s;
}
.service:hover {
  box-shadow: 0 4px 30px var(--color-shadow-deep);
  border: 1.5px solid var(--color-secondary);
}
.service img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  flex: 1 1 300px;
  min-width: 255px;
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 16px;
  box-shadow: 0 1px 12px var(--color-shadow);
  border-left: 4px solid var(--color-secondary);
  padding: 32px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.14s;
}
.testimonial-card:hover { 
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 4px 24px var(--color-shadow-deep);
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.06rem;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: bold;
}

/* CTA SECTIONS */
.cta-section,
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section {
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 2px 14px var(--color-shadow);
}
.cta-section h2 {
  font-size: 2rem;
  color: var(--color-primary);
}


/* CARD CONTAINER STYLES (for content blocks) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1px 10px var(--color-shadow);
  transition: box-shadow 0.16s, border 0.16s;
}

/* GENERIC FLEXBOX PATTERNS */
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ & RESOURCES */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq {
  flex: 1 1 270px;
  min-width: 220px;
  background: var(--color-white);
  border-radius: 11px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1px solid var(--color-grey);
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border 0.13s;
}
.faq:hover {
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0 6px 18px var(--color-shadow-deep);
}

.downloads-section ul,
.resource-intro ul {
  margin-left: 16px;
}
.downloads-section li,
.resource-intro li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.downloads-section li a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.18s;
}
.downloads-section li a:hover {
  color: var(--color-secondary);
}

/* ABOUT US & TIMELINE */
.about-section ul,
.timeline {
  margin-left: 20px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  list-style-type: none;
}
.timeline li {
  position: relative;
  padding-left: 28px;
  color: var(--color-dark);
  font-size: 1rem;
}
.timeline li:before {
  content: '';
  position: absolute;
  left: 7px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
}
.timeline li strong { color: var(--color-primary); }


/* CONTACT DETAILS */
.contact-section .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
  margin-bottom: 26px;
  align-items: center;
}
.contact-section .contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--color-primary);
  font-size: 1.07rem;
  font-family: var(--font-display);
  box-shadow: 0 1px 6px var(--color-shadow);
}
.google-map-placeholder {
  width: 100%;
  padding: 28px 0;
  border-radius: 18px;
  background: var(--color-grey);
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 38px 0 10px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--color-white);
  font-size: 1rem;
  opacity: 0.8;
  transition: color 0.18s, opacity 0.16s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--color-white);
  font-size: 1rem;
  opacity: 0.95;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
  opacity: 0.8;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-top: 9px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 1;
  filter: grayscale(0);
  transition: opacity 0.16s, filter 0.14s;
}
.footer-social a:hover img {
  opacity: 0.75;
  filter: grayscale(1);
}
.footer-smallprint {
  width: 100%;
  text-align: right;
  color: #cad5ea;
  font-size: 0.95em;
  opacity: 0.8;
  margin-top: 12px;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  width: 100vw;
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 -2px 14px var(--color-shadow);
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.33s cubic-bezier(.33,1,.68,1), opacity 0.18s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-message {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 20px;
  margin: 0 2px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-white);
  color: var(--color-primary);
  outline: 2px solid var(--color-secondary);
}
.cookie-btn.reject {
  background: var(--color-white);
  color: var(--color-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,54,93,0.56);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: none;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 18px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 2px 24px var(--color-shadow-deep);
  padding: 36px 28px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modal-in 0.38s cubic-bezier(.3,1.3,.4,1) both;
}
@keyframes modal-in {
  0% { transform: translateY(50px) scale(.87); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.32rem;
  margin-bottom: 7px;
}
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-toggle-row label {
  font-size: 1rem;
  color: var(--color-dark);
  font-family: var(--font-display);
}
.toggle-switch {
  position: relative;
  width: 46px;
  height: 24px;
  background: var(--color-grey);
  border-radius: 24px;
  transition: background 0.19s;
}
.toggle-switch input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  background: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  transition: transform 0.19s, background 0.19s;
  box-shadow: 0 1px 4px var(--color-shadow);
}
.toggle-switch input:checked + .toggle-slider {
  transform: translateX(22px);
  background: var(--color-secondary);
}
.toggle-switch input:checked ~ .toggle-switch {
  background: var(--color-secondary);
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 16px;
  background: transparent;
  color: var(--color-primary);
  font-size: 1.4rem;
  border-radius: 20px;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--color-accent);
}

/* sections - privacy, gdpr, etc */
.privacy-policy ul, .gdpr-section ul, .cookie-policy-section ul {
  margin-left: 22px;
  margin-bottom: 12px;
}
.privacy-policy li, .gdpr-section li, .cookie-policy-section li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* UTILITIES & LUXURY ACCENTS */
.gold-accent {
  color: var(--color-secondary);
}
.gold-bg {
  background: var(--color-secondary);
  color: var(--color-white);
}
.box-gold-shadow {
  box-shadow: 0 2px 14px rgba(241,180,52,0.16);
}
.text-shadow {
  text-shadow: 0 2px 8px var(--color-shadow);
}
.elevated {
  box-shadow: 0 5px 35px var(--color-shadow-deep);
}
.rounded {
  border-radius: 20px !important;
}

/* Transitions and micro-interactions */
.card, .feature, .service, .testimonial-card, .faq {
  transition: box-shadow 0.19s, border 0.14s, transform 0.2s;
}
.card:hover, .feature:hover, .service:hover, .testimonial-card:hover, .faq:hover {
  transform: translateY(-5px) scale(1.018);
}
.cta-primary, .cookie-btn {
  transition: background 0.19s, color 0.18s, box-shadow 0.18s, transform 0.16s;
}
.cta-primary:hover, .cookie-btn:hover {
  transform: scale(1.04);
}

/* VISUAL HIERARCHY */
ul {
  margin-bottom: 10px;
  list-style-type: disc;
  margin-left: 22px;
}
ol {
  margin-bottom: 12px;
  list-style-type: decimal;
  margin-left: 26px;
}
li {
  margin-bottom: 5px;
}

/* SCROLLBAR for LUXURY */
::-webkit-scrollbar {
  width: 10px;
  background: #ecebe9;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d1a02a;
}

/* RESPONSIVE: MOBILE FIRST */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .footer-brand, .footer-contact, .footer-nav, .footer-social {
    margin-bottom: 14px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .hero, .section, .features, .services-overview, .services-section, .solutions-section, .cta-section, .about-section, .timeline-section, .values-section, .industry-intro, .industry-cases, .resource-intro, .faqs-section, .downloads-section, .contact-section, .privacy-policy, .gdpr-section, .cookie-policy-section, .thank-you-section {
    padding: 32px 6px;
    margin-bottom: 34px;
  }
  .content-wrapper { gap: 13px; }
  .features .feature-grid, .services-overview .service-list, .case-list, .service-grid, .faq-list, .card-container, .testimonials .testimonial-cards, .content-grid, .footer-social {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .testimonial-card, .feature, .service, .services-overview .service-list > div {
    min-width: 80vw;
    max-width: 99vw;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 15px;
  }
  .contact-section .contact-details {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .footer-smallprint {
    text-align: left;
    margin-top: 10px;
  }
}
@media (max-width: 530px) {
  .cta-primary, .btn, .cookie-btn { padding: 11px 14px; font-size: 0.96rem; }
  header .logo img, .footer-brand img { height: 32px; }
  .cookie-modal { padding: 20px 6px 20px 12px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-contact > div, .contact-section .contact-details > div { font-size: 0.97rem; padding: 8px 10px; }
}

/* --- END OF STYLE.CSS --- */
