/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1D2837;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
ul, ol {
  list-style: none;
}
a {
  color: #1D2837;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E1A82D;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* VARIABLES (Fallbacks for custom properties) */
:root {
  --clr-primary: #1D2837;
  --clr-secondary: #E1A82D;
  --clr-accent: #F7F8FA;
  --clr-bg: #fff;
  --clr-footer-bg: #F7F8FA;
  --clr-text: #1D2837;
  --clr-muted: #69707D;
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --border-radius: 14px;
  --shadow: 0 2px 12px rgba(29,40,55,0.045);
  --shadow-card: 0 4px 18px rgba(29,40,55,0.08);
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 20px 0;
}

/* HEADER & NAVIGATION */
header {
  background: var(--clr-bg);
  border-bottom: 1px solid #F3F4F5;
  z-index: 20;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-text);
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--clr-secondary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 600;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  border: none;
  border-radius: 32px;
  min-width: 150px;
  padding: 12px 28px;
  margin-left: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFCE60;
  color: var(--clr-primary);
  box-shadow: 0 4px 20px 0 rgba(225,168,45,0.12);
}

/* Burger Menu (Mobile) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--clr-primary);
  margin-left: 16px;
  background: transparent;
  border: none;
  padding: 0 8px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 23;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--clr-secondary);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 0 32px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.7,0.1,0.25,1);
  box-shadow: 0 0 0 9999px rgba(29,40,55,0.07);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  margin-top: 28px;
  margin-left: auto;
  font-size: 2.2rem;
  color: var(--clr-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--clr-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.22rem;
  padding: 10px 0;
  color: var(--clr-primary);
  border-radius: 8px;
  transition: color 0.17s, background 0.22s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-accent);
  color: var(--clr-secondary);
}

/* Hide main nav and show burger on small screens */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* MAIN & SECTIONS */
main {
  margin-top: 0;
  margin-bottom: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 38px;
    padding: 28px 0 28px 0;
  }
}

/* Spacing Helpers - Card/Section Gaps */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(29,40,55,0.09);
  color: var(--clr-primary);
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.testimonial-card strong {
  font-size: 0.97rem;
  color: var(--clr-muted);
  font-weight: 500;
  margin-top: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(29,40,55,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 28px 20px 24px 20px;
  flex: 1 1 250px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  opacity: 0.94;
}
.feature-item h3 {
  font-size: 1.18rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--clr-primary);
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(29,40,55,0.15);
  transform: translateY(-3px) scale(1.015);
}

/* FLEX LAYOUTS FOR FEATURE/SERVICE/INITIATIVE/JOB GRIDS */
.feature-grid, .service-list, .industry-list, .initiative-grid, .job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.service-item, .industry-item, .initiative-item, .job-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 26px 20px 20px 20px;
  flex: 1 1 270px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.16s, transform 0.16s;
}
.service-item:hover, .industry-item:hover, .initiative-item:hover, .job-item:hover {
  box-shadow: 0 5px 20px rgba(29,40,55,0.13);
  transform: translateY(-2.5px);
}

/* Small subgrids for special sections */
.usp-list, .solution-highlights, .sustainability-targets {
  margin-top: 16px;
  background: #F7F8FA;
  border-radius: 10px;
  padding: 20px 20px 20px 36px;
  box-shadow: 0 1px 6px rgba(29,40,55,0.025);
  color: var(--clr-primary);
}

/* CONTENT */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--clr-text);
}
.address-block {
  background: #F7F8FA;
  padding: 18px 28px;
  border-radius: 9px;
  color: var(--clr-text);
  margin-bottom: 20px;
  flex: 1;
}
.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F8FA;
  min-width: 180px;
  padding: 16px 14px;
  border-radius: 9px;
  flex: 1;
}

/* TYPOGRAPHY & HIERARCHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-primary);
  letter-spacing: 0.3px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  line-height: 1.19;
}
h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
p {
  font-family: var(--font-body);
  color: var(--clr-text);
  font-size: 1.04rem;
  line-height: 1.64;
  margin-bottom: 13px;
}
ul {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 8px;
  padding-left: 20px;
  list-style: disc outside;
  line-height: 1.55;
}
ul li {
  margin-bottom: 6px;
}
strong {
  font-weight: 600;
  color: var(--clr-primary);
}
address {
  font-style: normal;
  font-size: 1rem;
  color: var(--clr-text);
  margin-top: 10px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 7px;
  }
  .container {
    padding: 0 12px;
  }
}

/* FORMS (Cookie etc) */
input[type="checkbox"] {
  accent-color: var(--clr-secondary);
}

/* FOOTER */
footer {
  background: var(--clr-footer-bg);
  padding: 60px 0 20px 0;
  border-top: 1px solid #E9EAED;
  color: var(--clr-text);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--clr-muted);
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--clr-secondary);
}
.footer-contact {
  margin-bottom: 13px;
}
.footer-contact h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.footer-contact p, .footer-contact a {
  color: var(--clr-text);
  font-size: 0.99rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.72;
  transition: opacity 0.15s;
}
.footer-social a:hover img {
  opacity: 1;
}
.footer-copy {
  font-size: 0.96rem;
  color: var(--clr-muted);
  margin-top: 22px;
  text-align: left;
}

@media (max-width: 620px) {
  .footer-top, .footer-nav, .footer-social {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  footer {
    padding: 40px 0 16px 0;
  }
}

/* RESPONSIVE: Non-stack layouts to column below 900px */
@media (max-width: 900px) {
  .feature-grid, .service-list, .industry-list,
  .initiative-grid, .job-listings, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .card-container, .content-grid, .feature-grid, .service-list, .industry-list, .initiative-grid, .job-listings {
    gap: 14px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 8px;
  }
  .testimonial-card, .feature-item, .service-item, .industry-item, .initiative-item, .job-item {
    min-width: 0;
    padding: 16px 11px;
  }
}

/* Responsive for .text-image-section layout */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* BUTTON STYLES */
button, .cta-btn {
  transition: background 0.17s, color 0.16s, box-shadow 0.17s, transform 0.13s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* ADDRESS BLOCKS & DETAILS */
.address-block {
  margin-bottom: 24px;
}
.contact-map img {
  border-radius: 8px;
  box-shadow: 0 1px 14px rgba(29,40,55,0.04);
  width: 96%;
  max-width: 320px;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1.5px solid #ebecee;
  box-shadow: 0 -2px 10px rgba(29,40,55,0.09);
  z-index: 60;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 36px;
  font-size: 1rem;
  color: var(--clr-primary);
  font-family: var(--font-body);
  transition: transform 0.35s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__desc {
  flex: 2 1 0;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
  flex: 1 1 0;
}
.cookie-banner button {
  border-radius: 6px;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.17s, box-shadow 0.18s;
}
.cookie-btn-accept {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  box-shadow: var(--shadow);
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #FFCE60;
}
.cookie-btn-reject {
  background: #F3F4F6;
  color: var(--clr-text);
  border: 1px solid #e2e3e5;
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: #ececed;
}
.cookie-btn-settings {
  background: none;
  color: var(--clr-secondary);
  border: 1px solid var(--clr-secondary);
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: var(--clr-accent);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner__buttons {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 420px;
  width: 96vw;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 20px 62px rgba(29,40,55,0.26);
  transform: translate(-50%,-50%) scale(1);
  z-index: 9999;
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 1;
  transition: opacity 0.2s, transform 0.27s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.95);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--clr-muted);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--clr-secondary);
}
.cookie-modal__title {
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #F7F8FA;
  border-radius: 7px;
  padding: 8px 14px;
}
.cookie-category label {
  font-size: 1.05rem;
  flex: 1 1 0;
  color: var(--clr-primary);
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 6px 12px 6px;
    font-size: 0.99rem;
  }
  .cookie-modal__actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* MINIMALIST - MICRO INTERACTIONS (General Transitions) */
a, button, .cta-btn, .feature-item, .service-item, .industry-item, .initiative-item, .testimonial-card {
  transition: all 0.17s cubic-bezier(0.4,0.14,0.52,1.12);
}

/* ACCESSIBILITY - FOCUS STYLES */
a:focus, button:focus, .cta-btn:focus,
input:focus, textarea:focus {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #FAEDA7;
}

/* MINIMALIST - SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #f6f6f6;
}
::-webkit-scrollbar-thumb {
  background: #E1A82D44;
  border-radius: 6px;
}

/* PRINT STYLES (MINIMAL) */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    color: #222;
    background: #fff;
  }
}

/* END */
