/* ===================================================================
   RESET & BASE TYPOGRAPHY
   ===================================================================*/
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: #F7F7F7;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232425;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #154361;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #E9A839;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong, b {
  font-weight: bold;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
}

/* ===================================================================
   COLORS & BRANDING
   ===================================================================*/
:root {
  --color-primary: #154361;
  --color-secondary: #E9A839;
  --color-accent: #F7F7F7;
  --color-white: #fff;
  --color-dark: #232425;
  --color-error: #ed5858;
  --color-success: #2ecc77;
  --color-blue-light: #49C6E5;
  --color-green-playful: #2ed8a7;
  --color-pink-playful: #FF82A9;
}

/* ===================================================================
   TYPOGRAPHY
   ===================================================================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: #154361;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.body, p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232425;
  font-size: 1rem;
  margin-bottom: 10px;
}
p:not(:last-child), ul:not(:last-child) {
  margin-bottom: 18px;
}

/* Playful dynamic fonts for titles and highlights */
.hero-section h1, .hero-section h2, .hero-section .cta, .thank-you-confirmation h1, .hero-services h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  text-transform: none;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

/* Strong playful highlights */
.highlight, .feature-item h3, .cta.primary, .cta.secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* ===================================================================
   HEADER & NAVIGATION
   ===================================================================*/
header {
  background: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  box-shadow: 0 2px 8px rgba(22,58,82,0.04);
  padding: 0;
  z-index: 1090;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.4s cubic-bezier(.74,.29,.3,1.18);
}
.logo:hover img {
  transform: scale(1.09) rotate(-3deg);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  background: transparent;
  transition: background .2s, color .2s, transform .16s;
  margin-bottom: 0 !important;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.07) rotate(-2deg);
}
.main-nav .cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px -6px #E9A83977;
  padding: 8px 28px !important;
  margin-left: 10px;
  border: 2px solid var(--color-secondary);
  transition: background .18s, color .18s, box-shadow .20s, transform .16s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: var(--color-white);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: 0 8px 30px -10px #E9A83944;
  transform: scale(1.10) rotate(2deg);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 12px -4px #E9A83966;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .16s, transform .18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: scale(1.08) rotate(-6deg);
}

/* ===================================================================
   MOBILE MENU STYLES
   ===================================================================*/
.mobile-menu {
  position: fixed;
  background: var(--color-primary);
  top: 0; left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  z-index: 1200;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.7,.04,.32,1.06), opacity 0.32s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  margin: 28px 20px 12px 14px;
  align-self: flex-end;
  box-shadow: 0 4px 15px -6px #E9A83977;
  cursor: pointer;
  transition: background .13s, color .16s, transform .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-white);
  color: var(--color-secondary);
  transform: scale(1.09) rotate(-6deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 18px 28px 36px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255,255,255,0.10);
  transition: color .16s, background .16s, padding-left .12s;
  min-width: 180px;
}
.mobile-nav a:last-child {
  color: var(--color-secondary);
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(233,168,57,0.11);
  padding-left: 10px;
  border-radius: 6px;
}

/* ===================================================================
   FLEXBOX UTILS, GAPS & SECTIONS
   ===================================================================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: -20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 4px 22px -10px rgba(21, 67, 97, 0.18), 0 2px 8px -4px #E9A83911;
  padding: 28px 24px;
  flex: 1 1 228px;
  min-width: 220px;
  max-width: 280px;
  transition: box-shadow .22s, transform .22s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 12px 38px -14px #E9A83955, 0 2px 8px -4px #49C6E533;
  transform: translateY(-6px) scale(1.04);
  z-index: 2;
}
.feature-item h3 {
  color: var(--color-blue-light);
  font-size: 1.19rem;
  font-weight: 800;
  margin-bottom: 2px;
  text-shadow: 1px 1px 0 #F7F7F799;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px -5px #49C6E544;
  transition: box-shadow .18s, transform .19s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 22px -8px #2ed8a733, 0 2px 10px -4px #FF82A955;
  transform: translateY(-2px) scale(1.03);
}

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

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

/* ===================================================================
   HERO, CTA, BUTTONS
   ===================================================================*/
.hero-section {
  background: linear-gradient(105deg, #E9A839 0%, #FF82A9 100%);
  padding: 70px 0 70px;
  border-bottom-left-radius: 70px 32px;
  border-bottom-right-radius: 70px 32px;
  box-shadow: 0 8px 24px -8px #E9A83955;
  text-align: left;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 600px;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 6px;
  line-height: 1.11;
}
.hero-section p {
  font-size: 1.14rem;
  color: var(--color-primary);
  font-weight: 500;
}

.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  font-size: 1.08rem;
  font-weight: 800;
  margin-top: 12px;
  padding: 11px 34px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 18px -8px #E9A83999;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .16s, color .18s, box-shadow .18s, transform .17s;
  text-shadow: none;
  letter-spacing: 0.02em;
}
.cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cta.primary:hover,
button.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  transform: scale(1.10) rotate(1deg);
  box-shadow: 0 6px 24px -8px #E9A83944, 0 2px 8px -4px #2ed8a732;
}
.cta.secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  margin-left: 14px;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--color-blue-light);
  color: var(--color-primary);
  border: 2px solid var(--color-blue-light);
  box-shadow: 0 6px 14px -6px #49C6E577;
  transform: scale(1.08) rotate(-1deg);
}

/* ===================================================================
   ABOUT, TRUST BADGES, TEAM
   ===================================================================*/
.trust-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 18px;
}
.trust-badges li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 1.04rem;
  background: #fffefb;
  border-radius: 16px;
  padding: 10px 18px;
  color: var(--color-dark);
  font-weight: 500;
  box-shadow: 0 1px 3px -2px #E9A83944;
}
.trust-badges img {
  height: 28px;
  width: 28px;
}

.company-values ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.strength-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.strength-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 2px 12px -5px #49C6E533;
}
.strength-item img {
  height: 30px;
  width: 30px;
}
.partner-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 14px;
}

.team-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  min-width: 200px;
  flex: 1 1 220px;
  box-shadow: 0 4px 14px -8px #15436144;
  margin-bottom: 20px;
}
.team-member h4 {
  color: var(--color-pink-playful);
}

.leadership-overview {
  margin-bottom: 18px;
}

/* ===================================================================
   CARD-LIKE UTILITIES FOR SERVICE, VACANCY, ETC.
   ===================================================================*/
.services-teasers, .service-list, .team-highlights, .vacancies ul, .features-section .feature-grid, .partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .vacancies ul li {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px -5px #2ed8a744;
  min-width: 220px;
  flex: 1 1 190px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .15s, transform .15s;
}
.service-item:hover {
  box-shadow: 0 8px 24px -8px #FF82A955;
  transform: translateY(-3px) scale(1.03);
}

/* ===================================================================
   TESTIMONIALS
   ===================================================================*/
.testimonials-section, .cargo-testimonials, .partners-section, .testimonial-slider {
  background: var(--color-accent);
  border-radius: 32px;
  box-shadow: 0 4px 24px -10px #15436111;
  padding-top: 50px;
  padding-bottom: 46px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: var(--color-dark);
  border-radius: 15px;
  min-width: 240px;
  box-shadow: 0 4px 16px -7px #E9A83933;
  font-size: 1.07rem;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 310px;
  transition: box-shadow .15s, transform .17s;
  z-index: 1;
}
.testimonial-card p {
  color: var(--color-dark);
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-meta {
  color: var(--color-primary);
  font-size: 0.95em;
  font-weight: 700;
  font-style: normal;
  margin-top: 10px;
  margin-left: 0;
}
.testimonial-card:hover {
  box-shadow: 0 12px 34px -10px #49C6E5cc;
  transform: scale(1.04) rotate(-1deg);
  z-index: 2;
}

/* ===================================================================
   CONTACT INFO, MAP, HIGHLIGHTS
   ===================================================================*/
.contact-info-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 12px 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 22px;
  font-size: 1.07rem;
  font-weight: 500;
  color: var(--color-primary);
  box-shadow: 0 2px 8px -5px #49C6E533;
}
.contact-item img {
  width: 24px;
  height: 24px;
  margin-right: 2px;
}
.map-placeholder {
  width: 100%;
  max-width: 370px;
  margin: 18px 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 14px -7px #49C6E522;
  padding: 15px 12px;
}
.map-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================================
   FOOTER
   ===================================================================*/
footer {
  background: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  padding: 0;
  margin-top: 70px;
  border-top-left-radius: 48px 16px;
  border-top-right-radius: 48px 16px;
}
.footer-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
  padding: 6px 14px;
  border-radius: 30px;
  transition: background .17s, color .16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.geo-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.04rem;
}
.geo-note img {
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
.footer-logo img {
  height: 48px;
}

/* ===================================================================
   LEGAL & POLICY PAGES
   ===================================================================*/
.legal-section {
  background: #fff;
  border-radius: 18px;
  padding: 34px 20px;
  box-shadow: 0 6px 30px -10px #2ed8a733;
  margin: 38px auto 68px auto;
  max-width: 800px;
}
.legal-section h1, .legal-section h2 {
  color: var(--color-primary);
}

/* ===================================================================
   THANK YOU PAGE
   ===================================================================*/
.thank-you-confirmation {
  background: linear-gradient(130deg, #49C6E5, #E9A839 85%);
  border-radius: 34px;
  box-shadow: 0 8px 28px -10px #49C6E577;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
.thank-you-confirmation h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.thank-you-confirmation p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* ===================================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2500;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -2px 14px -6px #E9A83966;
  border-top-left-radius: 18px 8px;
  border-top-right-radius: 18px 8px;
  padding: 24px 16px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  animation: cookie-banner-in .7s cubic-bezier(.77,.02,.49,.92);
  font-size: 1rem;
  flex-wrap: wrap;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 220px;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 7px 22px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .14s, transform .16s;
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn:not(.secondary):hover,
.cookie-btn:not(.secondary):focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: scale(1.05);
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  margin-right: 10px;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  color: var(--color-secondary);
  background: #fffbe9;
  transform: scale(1.03);
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3000;
  background: rgba(21, 67, 97, 0.12);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  max-width: 420px;
  width: 90vw;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 8px 36px -13px #E9A83955;
  padding: 32px 24px 24px 24px;
  margin-bottom: 0;
  animation: cookie-modal-in .43s cubic-bezier(.77, .02, .49, .92);
}
@keyframes cookie-modal-in {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 18px;
  color: var(--color-primary);
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-switch {
  width: 33px;
  height: 18px;
  border-radius: 12px;
  background: #e9a83944;
  position: relative;
  margin-left: 7px;
  margin-right: 1.5px;
  transition: background .15s;
  cursor: pointer;
  border: 1px solid #e6e6e6;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0; width: 100%; height: 100%; cursor: pointer; position: absolute;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: transform .15s, background .14s;
}
.cookie-switch input[type="checkbox"]:checked ~ .switch-toggle {
  transform: translateX(15px);
  background: var(--color-secondary);
}
.switch-toggle {
  content: '';
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--color-secondary);
  transition: transform .15s, background .15s;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* ===================================================================
   ANIMATION: CARDS, BUTTONS
   ===================================================================*/
@media (prefers-reduced-motion: no-preference) {
  .feature-item,
  .card,
  .testimonial-card {
    transition: box-shadow .22s, transform .22s;
  }
  .cta,
  button.cta,
  .cookie-btn {
    transition: background .15s, color .14s, box-shadow .18s, transform .17s;
  }
}

/* ===================================================================
   RESPONSIVE DESIGN
   ===================================================================*/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .footer-main {
    padding: 32px 10px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .services-teasers, .service-list, .team-highlights, .vacancies ul, .partner-logos, .content-grid, .testimonial-slider, .contact-info-highlight {
    gap: 16px;
  }
  .about-section .container, .features-section .container, .contact-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .hero-section, .thank-you-confirmation {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header-inner {
    height: 58px;
    gap: 12px;
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .services-teasers, .service-list, .team-highlights, .contact-info-highlight, .testimonial-slider, .partner-logos, .vacancies ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid, .trust-badges, .strength-icons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .section, section {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .footer-main {
    gap: 26px;
  }
  .geo-note {
    justify-content: center;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .thank-you-confirmation {
    padding: 24px 5px 28px 5px;
    border-radius: 18px;
  }
  .legal-section {
    border-radius: 10px;
    padding: 16px 8px;
    margin: 18px auto 32px auto;
  }
  .footer-main,
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 545px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.21rem; }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .footer-logo img {
    height: 36px;
  }
  .cookie-banner {
    padding: 16px 5px 14px 9px;
    font-size: 0.94rem;
  }
  .cookie-btn, .cookie-btn.secondary, .cta, .cta.secondary, .cta.primary {
    font-size: 0.98rem;
    padding: 7px 13px;
  }
}