/* ====================================================================
   CSS RESET & BASELINE 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #141922;
  color: #F0F4F8;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #F9A825;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffe082;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
}

/* ====================================================================
   BRAND TYPOGRAPHY
   ==================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  color: #d8dee4;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F0F4F8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
span.price {
  font-size: 1.1rem;
  color: #F9A825;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 0.01em;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

/* ====================================================================
   CORE LAYOUT: CONTAINER, FLEXBOX, SPACING
   ==================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Spacing classes per requirement */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  position: relative;
  margin-bottom: 20px;
}
.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;
}
.features .content-wrapper > ul,
.about .content-wrapper > ul,
.faq .content-wrapper > ul,
.legal .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
  padding-left: 0;
}
.features .content-wrapper > ul > li,
.about .content-wrapper > ul > li {
  background-color: #1B232C;
  border: 1px solid #313740;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(30, 40, 60, 0.12), 0 1.5px 3px 0 rgba(0,0,0,0.06);
  padding: 22px 20px 28px 20px;
  flex: 1 1 245px;
  min-width: 220px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  color: #F0F4F8;
}
.features .content-wrapper > ul > li img {
  width: 34px;
  height: 34px;
  background: #222B37;
  border-radius: 7px;
  box-shadow: 0 2px 6px rgba(40,42,50,0.15);
  border: 1px solid #374151;
}
.features .content-wrapper > ul > li h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #F9A825;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.features .content-wrapper > ul > li strong {
  color: #F9A825;
  font-size: 1.08rem;
  font-weight: 600;
}
.about .content-wrapper > ul > li,
.legal .content-wrapper > ul > li {
  background: #202A36;
  border: 1px solid #293345;
}

/* ====================================================================
   HEADER & NAVIGATION
   ==================================================================== */
header {
  background: #202A36;
  border-bottom: 1.5px solid #303b4b;
  box-shadow: 0 3px 18px rgba(20,24,32,0.14);
  z-index: 1000;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 20px;
  gap: 16px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  color: #dbe7f1;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 9px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F9A825;
  background: #222b36;
}
.btn-primary {
  background: #F9A825;
  color: #23272E;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 9px;
  box-shadow: 0 2px 12px rgba(40,40,40,0.09);
  padding: 11px 30px;
  cursor: pointer;
  transition: background 0.21s, color 0.16s, box-shadow 0.2s;
  display: inline-block;
  margin-left: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffd54f;
  color: #212c36;
  box-shadow: 0 6px 28px rgba(249,168,37,0.23);
}

/* ---------------------- MOBILE BURGER NAVIGATION ---------------------- */
.mobile-menu-toggle {
  display: none;
  background: #F9A825;
  color: #23272E;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1.5rem;
  line-height: 1; 
  border: none;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd54f;
  color: #222b36;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #222B37;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.60,0.03,0.21,0.99);
  box-shadow: -2px 0 32px rgba(20,24,32,0.19);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #F9A825;
  font-size: 2rem;
  margin: 24px 26px 10px 0;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffd54f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 12px 36px;
}
.mobile-nav a {
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: #dde7f3;
  padding: 10px 0;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: background 0.14s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1B3556;
  color: #F9A825;
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 990px) {
  header .logo {
    margin-right: auto;
  }
  header .container {
    gap: 0;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====================================================================
   HERO, CTA, SECTIONS
   ==================================================================== */
.hero {
  background: #1B232C url('../assets/hero-bg-texture.png') top center repeat;
  border-bottom: 1.5px solid #232A35;
  display: flex;
  align-items: center;
  min-height: 350px;
  margin-bottom: 60px;
}
.hero .container,
.cta .container,
.confirmation .container,
.contact .container {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .cta .content-wrapper, .confirmation .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1, .cta h2, .confirmation h1 {
  color: #F9A825;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero p, .cta p, .confirmation p {
  font-size: 1.12rem;
  color: #F0F4F8;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 560px;
  margin-bottom: 18px;
}
.cta {
  background: #181C25;
  box-shadow: 0 -2px 12px rgba(27, 35, 86, 0.05);
  margin-bottom: 60px;
  border-radius: 20px;
}
.cta .btn-primary {
  margin-left: 0;
  margin-top: 8px;
}

/* ====================================================================
   SERVICE CARDS, PRICING, STEPS
   ==================================================================== */
.services .content-wrapper,
.steps .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #1B232C;
  border: 1.5px solid #293345;
  border-radius: 14px;
  box-shadow: 0 3px 24px rgba(20,24,32,0.08);
  padding: 30px 28px 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 245px;
  max-width: 350px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  gap: 13px;
  position: relative;
}
.service-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
.service-card h3, .service-card h2 {
  color: #F9A825;
  font-size: 1.14rem;
  margin-bottom: 5px;
}
.service-card p {
  color: #F0F4F8;
  font-size: 1rem;
  margin-bottom: 6px;
}
.service-card .price {
  color: #ffd54f;
  font-weight: 700;
  font-size: 1.07rem;
}

.steps .content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: 0;
}
.steps .content-wrapper > ol > li {
  background: #222B37;
  border: 1px solid #2c3548;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(20,24,32,0.11);
  padding: 32px 26px 36px 26px;
  flex: 1 1 185px;
  min-width: 180px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #F0F4F8;
}
.steps .content-wrapper > ol > li img {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
}

/* ====================================================================
   TESTIMONIAL CARDS
   ==================================================================== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #F0F4F8;
  color: #222B37;
  border: 1.2px solid #cdd7e4;
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(30,40,60,.10);
  max-width: 370px;
  flex: 1 1 250px;
  padding: 24px 22px 18px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.testimonial-card p {
  color: #222B37;
  font-size: 1.07rem;
  margin-bottom: 9px;
}
.testimonial-card .author {
  color: #1B3556;
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(27,53,86,.22);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

/* ====================================================================
   PRICING TABLE (Cennik)
   ==================================================================== */
table {
  width: 100%;
  background: #1B232C;
  border-collapse: collapse;
  margin-bottom: 32px;
  box-shadow: 0 1px 8px rgba(40,45,52,.10);
  border-radius: 10px;
  overflow: hidden;
}
table th, table td {
  text-align: left;
  padding: 18px 14px;
  font-size: 1rem;
  color: #F0F4F8;
}
table th {
  background: #232F41;
  font-family: 'Rubik', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffd54f;
}
table tr:nth-child(even) td {
  background: #202A36;
}
table tr:nth-child(odd) td {
  background: #1B232C;
}
table td {
  border-bottom: 1px solid #293345;
}
table tr:last-child td {
  border-bottom: none;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
footer {
  background: #1B232C;
  border-top: 1.5px solid #222b36;
  box-shadow: 0 -2px 14px rgba(27, 53, 86, 0.04);
  color: #F0F4F8;
  padding: 48px 0 24px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 200px;
}
.footer-branding img {
  width: 108px;
  margin-bottom: 3px;
}
.footer-branding p {
  color: #F9A825;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}
.footer-nav a {
  color: #F0F4F8;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
  padding: 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9A825;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 200px;
  font-size: .99rem;
}
.footer-contact a {
  color: #F9A825;
  text-decoration: underline;
}
@media (max-width:768px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 38px;
  }
}

/* ====================================================================
   LEGAL, GENERIC & CONFIRMATION SECTIONS
   ==================================================================== */
.legal .content-wrapper, .confirmation .content-wrapper, .contact .content-wrapper {
  background: #181C26;
  border: 1px solid #273140;
  border-radius: 17px;
  padding: 38px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  color: #F0F4F8;
}
.confirmation .content-wrapper {
  align-items: flex-start;
}
.legal h2, .confirmation h2, .contact h2 {
  color: #F9A825;
  font-size: 1.45rem;
}
.legal h1, .confirmation h1, .contact h1 {
  color: #F9A825;
}
.legal a, .confirmation a, .contact a {
  color: #F9A825;
}
.legal ul > li, .confirmation ul > li, .contact ul > li {
  margin-bottom: 7px;
}

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact address {
  font-style: normal;
  color: #F0F4F8;
}
.contact address strong {
  color: #F9A825;
}

/* ====================================================================
   RESPONSIVE DESIGN (Mobile-first, up to 768px & 991px)
   ==================================================================== */
@media (max-width: 991px) {
  .container {
    padding: 0 14px;
    max-width: 98vw;
  }
  .service-card, 
  .features .content-wrapper > ul > li,
  .steps .content-wrapper > ol > li,
  .testimonial-card {
    min-width: 210px;
    max-width: 100%;
    flex-basis: 98%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero, .cta, .confirmation, .contact, .services, .features, .steps { padding: 18px 0; }
  .hero .content-wrapper, .cta .content-wrapper, .confirmation .content-wrapper { gap: 18px; }
  .header .container { flex-direction: row; gap: 8px; }
  .footer-branding, .footer-contact, .footer-nav { min-width: 0; }
  /* Flex stacking for mobile */
  .card-container, .content-grid,
  .features .content-wrapper > ul,
  .about .content-wrapper > ul,
  .steps .content-wrapper > ol,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .container, .content-wrapper, .section, section { padding: 0 6px; }
}

/* ====================================================================
   MICRO-INTERACTIONS, HOVER FX, SHADOWS, ANIMATION
   ==================================================================== */
.btn-primary, .main-nav a, .mobile-menu-toggle, .mobile-nav a, .service-card, .testimonial-card, table tr, .features .content-wrapper > ul > li {
  transition: background 0.20s, color 0.18s, box-shadow 0.20s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 9px 36px rgba(27,53,86,.26);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
}
.features .content-wrapper > ul > li:hover {
  box-shadow: 0 9px 30px rgba(27,53,86,.14);
  background: #20293c;
  border-color: #445065;
}
.mobile-nav a:active {
  background: #232A35;
}

/* ====================================================================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   ==================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: #232F41;
  color: #FFF;
  border-top: 2px solid #F9A825;
  box-shadow: 0 -4px 22px rgba(27,53,86,.18);
  padding: 22px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  max-width: 440px;
  font-size: 1rem;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .btn-cookie {
  background: #F9A825;
  color: #232F41;
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.16s;
  margin-left: 0;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #ffd54f;
  color: #181C26;
}
.cookie-banner .btn-cookie-settings {
  background: transparent;
  color: #ffd54f;
  border: 1.5px solid #F9A825;
  border-radius: 8px;
  padding: 10px 17px;
  font-weight: 500;
  transition: all 0.15s;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: #ffd54f;
  color: #232F41;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(27, 53, 86, 0.62);
  z-index: 2150;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s cubic-bezier(0.69,0.03,0.40,1.0);
}
.cookie-modal-overlay.show {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #1B232C;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(27,53,86,0.25);
  max-width: 420px;
  width: 94vw;
  padding: 34px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  z-index: 2200;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #F9A825;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 22px;
  background: #293345;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 2px;
  position: relative;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-modal .cookie-toggle .slider {
  height: 18px; width: 18px;
  border-radius: 19px;
  background: #fff;
  display: block;
  transition: margin-left 0.18s, background 0.16s;
  margin-left: 1px;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked + .slider {
  margin-left: 19px;
  background: #F9A825;
}
.cookie-modal .cookie-desc {
  color: #dbe7f1;
  font-size: .96rem;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie {
  background: #F9A825;
  color: #232F41;
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  margin: 0;
}
.cookie-modal .btn-cookie:hover, .cookie-modal .btn-cookie:focus {
  background: #ffd54f;
  color: #181C26;
}
.cookie-modal .btn-cookie-close {
  background: transparent;
  color: #ffd54f;
  border: none;
  font-size: 1.4rem;
  position: absolute;
  top: 16px; right: 14px;
  cursor: pointer;
}
.cookie-modal .btn-cookie-close:hover, .cookie-modal .btn-cookie-close:focus {
  color: #F9A825;
}

@media (max-width: 430px) {
  .cookie-modal {
    padding: 19px 9px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 15px 4vw;
    gap: 13px;
    font-size: .92rem;
  }
}

/* ====================================================================
   INDUSTRIAL MODERN VISUAL ELEMENTS
   ==================================================================== */
/* Cards and Containers - metallic/urban accents */
.card, .service-card, .testimonial-card, .features .content-wrapper > ul > li {
  box-shadow: 0 4px 20px 0 rgba(31, 38, 57, 0.10),
              0 2px 9px 0 rgba(30, 40, 60, 0.045);
  border-radius: 13px;
  border: 1.2px solid #293345;
}

/* Subtle metallic details on dark containers */
.section, section, .content-wrapper {
  border-radius: 15px;
  border: 1px solid #262c35;
}
.features .content-wrapper > ul > li, .service-card {
  border-left: 5px solid #F9A825;
}
.features .content-wrapper > ul > li:hover {
  border-left: 5px solid #ffd54f;
}
.service-card {
  border-left: 5px solid #F9A825;
}
.service-card:hover {
  border-left: 5px solid #ffd54f;
}
.testimonial-card {
  border-left: 5px solid #F9A825;
}

/* ====================================================================
   UTILITIES
   ==================================================================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-primary { color: #F9A825 !important; }
.text-secondary { color: #F0F4F8 !important; }

/* ====================================================================
   HIDE - UTILITIES
   ==================================================================== */
.hide { display: none !important; }

/* ====================================================================
   PRINT STYLE BASELINE
   ==================================================================== */
@media print {
  *     { background: #fff !important; color: #000 !important; }
  body  { margin: 0; padding: 0; font-size: 14px; line-height: 1.49; }
  .main-nav, .mobile-menu, .btn-primary, .cookie-banner, .cookie-modal-overlay, header, footer { display: none !important; }
}
