/* ------------------------------------------------------
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background-color: #181E25;
  color: #E7EAF1;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B2B9BE;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #E7EAF1;
  outline-offset: 2px;
  z-index: 2;
  position: relative;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}$

/* ------------------------------------------------------
   BRAND FONTS & TYPOGRAPHY
---------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');

h1, .hero h1 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #E7EAF1;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #E7EAF1;
  margin-bottom: 18px;
  letter-spacing: 0.1px;
  line-height: 1.25;
}
h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #E7EAF1;
  margin-bottom: 12px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  color: #B2B9BE;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 7px;
}
strong, b {
  font-weight: 700;
  color: #E7EAF1;
}

/* ------------------------------------------------------
   COLORS & VARIABLES
---------------------------------------------------------*/
:root {
  --clr-bg: #181E25;
  --clr-bg-secondary: #232C36; /* slightly lighter than bg for cards */
  --clr-primary: #1D2935;
  --clr-secondary: #617078;
  --clr-accent: #E7EAF1;
  --clr-accent-dark: #C9CFD8;
  --clr-metal-dark: #2E3A46;
  --clr-warning: #AA5959;
  --clr-ok: #456F4B;
}

/* SHADOWS & EFFECTS */
:root {
  --shadow-card: 0 4px 20px 0 rgba(18,22,30,0.4), 0 2px 4px 0 rgba(10,12,20,0.12);
  --shadow-btn: 0 2px 9px rgba(44,58,67,.18);
  --border-radius: 10px;
  --border-radius-sm: 6px;
  --border-accent: 1.5px solid #44505D;
}

/* ------------------------------------------------------
   GENERAL CONTAINER, LAYOUT, SECTIONS
---------------------------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  width: 100%;
  border-radius: var(--border-radius);
}

/* Spacing & Flex Layouts (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--clr-bg-secondary);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  padding: 26px 22px;
  min-width: 250px;
  flex: 1 0 220px;
  border: var(--border-accent);
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(45,52,60,0.7);
  transform: translateY(-3px) scale(1.02);
}
.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;
  background: #F5F7FA;
  color: #222B32;
  padding: 20px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 3px 12px rgba(60,70,100,.11);
  font-size: 1.1rem;
  margin-bottom: 20px;
  border-left: 3px solid var(--clr-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--clr-bg-secondary);
  border-radius: var(--border-radius-sm);
  padding: 22px 16px;
  box-shadow: 0 2px 12px rgba(36,48,65,0.13);
  border: var(--border-accent);
  min-width: 210px;
  max-width: 270px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(84, 99, 120, .18);
  border-color: #768490;
}
.feature-item img {
  max-width: 44px; height: 44px;
  filter: grayscale(20%) brightness(1.2) contrast(1.15);
}

/* Cards, list, badges */
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  margin-bottom: 32px;
}
.team-member-card {
  background: var(--clr-bg-secondary);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
  border: var(--border-accent);
  padding: 22px 16px 14px 18px;
  flex: 1 1 225px;
  min-width: 205px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s;
}
.team-member-card h3 {
  font-size: 1.13rem;
  margin-bottom: 4px;
}
.team-member-card span {
  color: #B2B9BE;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 600;
}
.team-member-card ul {
  color: #B2B9BE;
  padding-left: 18px;
  font-size: .98rem;
  margin-bottom: 0;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 14px 0 18px 0;
}
.badges img {
  width: 34px; height: 34px; display: block;
}

/* Hero Section */
.hero {
  background: linear-gradient(95deg, #1D2935 60%, #232C36 100%);
  padding: 65px 0 55px 0;
  margin-bottom: 50px;
  box-shadow: 0 10px 50px -18px #1D2935;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #E7EAF1;
}
.hero p {
  font-size: 1.18rem;
  color: #B2B9BE;
  margin-bottom: 12px;
}

/* Features Section Grid */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.features h2 {
  color: #E7EAF1;
  margin-bottom: 26px;
}

/* Service/Details Lists */
.service-list {
  list-style-type: disc;
  padding-left: 24px;
  font-size: 1.09rem;
  color: #B2B9BE;
  margin-bottom: 24px;
}
.service-list li {
  margin-bottom: 12px;
}

/* Testimonial Section */
.testimonial-preview {
  background: #252E36;
  margin-bottom: 50px;
  border-radius: var(--border-radius);
}
.testimonial-preview h2 {
  color: #E7EAF1;
}
.testimonial-card strong {
  color: #1D2935;
  margin-left: 16px;
}

/* CTAs & Link Styles */
.cta-link, a.cta-link {
  color: var(--clr-accent);
  font-weight: 700;
  transition: color 0.18s, text-decoration 0.14s;
  border-bottom: 1.5px solid var(--clr-secondary);
  padding-bottom: 1.5px;
  text-decoration-thickness: 2px;
  font-size: 1.04rem;
  margin-top: 3px;
  letter-spacing: 0.2px;
}
.cta-link:hover, a.cta-link:hover {
  color: var(--clr-secondary);
  border-bottom-color: var(--clr-accent);
}

/* ------------------------------------------------------
   BUTTONS
---------------------------------------------------------*/
.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
  padding: 13px 32px;
  border-radius: var(--border-radius-sm);
  color: #181E25;
  background: linear-gradient(90deg, #E7EAF1 84%, #C9CFD8 100%);
  font-weight: 700;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.5px;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
  border: none;
  outline: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.17s;
  margin-right: 12px;
  margin-bottom: 8px;
  display: inline-block;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #C9CFD8 85%, #E7EAF1 100%);
  color: #232C36;
  box-shadow: 0 4px 18px rgba(70,70,70,0.13);
  transform: translateY(-1px) scale(1.01);
}

/* ------------------------------------------------------
   HEADER/NAVIGATION
---------------------------------------------------------*/
header {
  background: #212A30;
  box-shadow: 0 1px 14px rgba(30,34,40,0.14);
  z-index: 1011;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  height: 74px;
  min-height: 74px;
  position: relative;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  height: 53px;
  margin-right: 16px;
}
.logo img {
  height: 43px;
  width: auto;
  display: block;
  filter: brightness(1.08) grayscale(8%) contrast(1.12);
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 6px;
}
.main-nav a {
  color: #E7EAF1;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  position: relative;
  padding: 4px 6px;
  border-radius: 3px;
  transition: background 0.14s, color 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--clr-metal-dark);
  color: var(--clr-accent);
}

header .btn-primary {
  margin-left: auto;
  margin-right: 6px;
  margin-bottom: 0;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--clr-accent);
  font-size: 2.2rem;
  line-height: 1;
  border: none;
  margin-left: 8px;
  padding: 6px 14px;
  border-radius: 7px;
  box-shadow: none;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--clr-secondary);
  color: #fff;
}

@media (max-width: 900px) {
  .main-nav, header .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container {
    height: 66px;
    min-height: 66px;
    gap: 10px;
  }
}

/* ------------------------------------------------------
   MOBILE MENU
---------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(29,41,53,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.7, -0.1, 0.28, 1.14);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  color: #E7EAF1;
  background: transparent;
  font-size: 2.35rem;
  margin: 28px 28px 12px 16px;
  align-self: flex-end;
  border-radius: 999px;
  border: none;
  transition: background 0.14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--clr-secondary);
  color: var(--clr-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
  width: 100%;
  align-items: flex-start;
  padding-left: 44px;
}
.mobile-nav a {
  color: #E7EAF1;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 12px 0 12px 4px;
  border-radius: 4px;
  margin-right: 28px;
  width: 90%;
  display: block;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232C36;
  color: var(--clr-secondary);
}
@media (max-width: 500px) {
  .mobile-nav {
    padding-left: 18px;
    gap: 17px;
  }
}

/* Overlay scroll protection on mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}

/* ------------------------------------------------------
   FOOTER
---------------------------------------------------------*/
footer {
  background: #181E25;
  border-top: 2.5px solid #232C36;
  padding: 0 0 0 0;
  margin-top: 35px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding: 36px 0 0 0;
}
.footer-logo {
  flex: 0 1 140px;
  align-self: flex-start;
  padding-top: 5px;
}
.footer-logo img {
  height: 52px; width: auto;
  display: block;
  filter: grayscale(0.04) brightness(98%) contrast(1.19);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 180px;
}
.footer-nav a {
  color: #B2B9BE;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-secondary);
}
.footer-contact {
  font-size: 1rem;
  color: #B2B9BE;
  line-height: 1.55;
  max-width: 250px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 7px;
}
.footer-contact img {
  vertical-align: middle;
  height: 18px;
  width: auto;
  margin-right: 4px;
  margin-left: 2px;
  filter: grayscale(100%) brightness(1.2);
}
.footer-contact strong {
  color: #E7EAF1;
  font-weight: 700;
  font-family: 'Merriweather', serif;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 16px 0 12px 0;
  font-size: .95rem;
  color: #617078;
}

@media (max-width: 840px) {
  .footer-main {
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
  .footer-logo { align-self: center; }
}

/* ------------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------------*/
@media (max-width: 1023px) {
  .container { max-width: 95vw; padding: 0 9px; }
  .feature-item { max-width: 48%; }
  .team-member-card { max-width: 45vw; }
  .content-grid, .features .feature-grid, .team-member-cards {
    gap: 16px;
  }
}
@media (max-width: 770px) {
  .feature-item, .team-member-card {
    min-width: 92vw;
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .container {
    padding-left: 0; padding-right: 0;
  }
  .hero {
    padding: 36px 0 35px 0;
    margin-bottom: 34px;
  }
  .feature-item, .team-member-card {
    min-width: 100%; max-width: 100%;
  }
  .team-member-cards, .features .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .main-nav, header .btn-primary {
    display: none;
  }
}
@media (max-width: 635px) {
  .footer-main {
    padding: 21px 0 0 0;
    gap: 17px;
  }
  .section {
    padding: 24px 7px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .section { padding: 16px 3px; margin-bottom: 36px; }
  .hero { padding: 22px 0 14px 0; }
}

/* ------------------------------------------------------
   UTILITY CLASSES
---------------------------------------------------------*/
.text-section {
  background: none;
  padding: 0;
}
.text-section ul {
  padding-left: 17px;
  font-size: 1rem;
  color: #B2B9BE;
}
.text-section p {
  margin-bottom: 13px;
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: linear-gradient(92deg, #232C36, #181E25 80%);
  color: #E7EAF1;
  padding: 17px 18px 18px 24px;
  box-shadow: 0 -2px 16px rgba(31,39,49,0.24);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.33s cubic-bezier(.6,.1,.2,1.1), opacity 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  color: #E7EAF1;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 7px;
  padding: 11px 20px;
  font-size: .97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  background: #232C36;
  color: #E7EAF1;
  box-shadow: 0 1.5px 6px 0 #0001;
  margin-right: 3px;
  transition: background 0.11s, color 0.11s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, #E7EAF1, #B2B9BE);
  color: #212A30;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #C9CFD8;
  color: #181E25;
}
.cookie-banner .reject {
  background: #AA5959;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #922020;
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  border: 1.2px solid #B2B9BE;
  color: #B2B9BE;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #1D2935;
  color: #E7EAF1;
}
@media (max-width: 478px) {
  .cookie-banner { flex-direction: column; gap: 10px; padding: 15px 8px 10px 8px; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,30,38,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10015;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal .modal-content {
  background: #232C36;
  color: #E7EAF1;
  padding: 34px 30px 25px 30px;
  border-radius: var(--border-radius);
  min-width: 320px; max-width: 90vw;
  box-shadow: 0 8px 42px rgba(31,41,53,0.36);
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #E7EAF1;
  font-family: 'Merriweather', serif;
  margin-bottom: 0.7em;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-modal .category label {
  font-weight: 600;
  color: #B2B9BE;
}
.cookie-modal input[type="checkbox"]:disabled + label {
  opacity: 0.8;
  text-decoration: underline dotted;
}
.cookie-modal .modal-actions {
  display: flex; flex-direction: row; justify-content: flex-end; gap: 11px; margin-top: 10px;
}
.cookie-modal .modal-actions button {
  border-radius: 6px;
  padding: 9px 18px;
  font-size: .99rem;
  border: none;
  background: #E7EAF1;
  color: #232C36;
  font-weight: 700;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .modal-actions .close-modal {
  background: #232C36;
  color: #E7EAF1;
  border: 1.2px solid #B2B9BE;
}
.cookie-modal .modal-actions .close-modal:hover, .cookie-modal .modal-actions .close-modal:focus {
  background: #181E25;
  color: #C9CFD8;
}
.cookie-modal .modal-actions .save-modal {
  background: #456F4B;
  color: #fff;
}
.cookie-modal .modal-actions .save-modal:hover {
  background: #192823;
  color: #B2B9BE;
}
@media (max-width: 430px) {
  .cookie-modal .modal-content {
    padding: 16px 6px 16px 8px;
    min-width: 88vw;
  }
}

/* ------------------------------------------------------
   FORMS (if present)
---------------------------------------------------------*/
input, textarea,
select {
  background: #1D2935;
  color: #E7EAF1;
  font-size: 1rem;
  border-radius: 5px;
  border: var(--border-accent);
  padding: 13px 11px;
  margin-bottom: 12px;
  box-shadow: 0 1.5px 7px #232C3622;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--clr-accent);
  outline: none;
}
label {
  font-weight: 600;
  color: #E7EAF1;
}

/* ------------------------------------------------------
   MISC
---------------------------------------------------------*/
::-webkit-scrollbar {
  width: 7px;
  background: #181E25;
}
::-webkit-scrollbar-thumb {
  background: #2E3A46;
  border-radius: 7px;
}

hr {
  border: none;
  border-bottom: 1.4px solid #232C36;
  margin: 26px 0 22px 0;
}

/* ------------------------------------------------------
   THANK YOU PAGE
---------------------------------------------------------*/
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}

/* ------------------------------------------------------
   ACCESSIBILITY & FOCUS
---------------------------------------------------------*/
:focus-visible {
  outline: 2px solid #E7EAF1;
  outline-offset: 2px;
}

/* ------------------------------------------------------
   PRINT STYLES
---------------------------------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body, main, section, .container, .content-wrapper {
    background: #fff;
    color: #111;
    box-shadow: none;
    padding: 0; margin: 0;
  }
  .section { break-after: page; }
}

/* ------------------------------------------------------
   INDUSTRIAL MODERN ACCENTS
---------------------------------------------------------*/
/* Use metallic lines, bold separators, subtle depth */
.section, .card,
.feature-item, .team-member-card {
  border-left: 3px solid #617078;
}
::selection {
  background: #647383;
  color: #fff;
}

