/* ========================================================================
  FERORA INVESTMENT - INDUSTRIAL MODERN STYLE
  Comprehensive Responsive Stylesheet (Flexbox-Only)
  ======================================================================== */

/* ------------------------------------------------------------------------
   CSS 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;
}
html {
  line-height: 1;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #161b22; /* Urban dark steel */
  font-family: 'Roboto', Arial, sans-serif;
  color: #EAEFF4;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #F5A623;
  text-decoration: none;
  transition: color 0.20s ease;
}
a:hover, a:focus {
  color: #FFD580;
  outline: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  resize: none;
}

/* ------------------------------------------------------------------------
   BRAND FONT IMPORTS
------------------------------------------------------------------------ */
@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');

/* ------------------------------------------------------------------------
   CUSTOM PROPERTIES (WITH FALLBACKS)
------------------------------------------------------------------------ */
:root {
  --primary: #11477A;
  --secondary: #EAEFF4;
  --accent: #F5A623;
  --bg-dark: #161b22;
  --bg-darker: #101419;
  --bg-card: #232932;
  --text: #EAEFF4;
  --text-muted: #94a3b8;
  --text-dark: #202834;
  --border: #232932;
  --hover: #162d41;
  --card-shadow: 0 4px 20px 0 rgba(16,20,25,0.10), 0 1.5px 7px 0 rgba(0,0,0,.08);
}

/* ------------------------------------------------------------------------
   CONTAINER, LAYOUT & SECTIONS (FLEXBOX ONLY!)
------------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-darker);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

/* ------------------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------------------ */
header {
  width: 100%;
  background: var(--bg-card);
  box-shadow: 0 1px 8px rgba(16,20,25,.11);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo img {
  width: 170px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary);
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--hover);
  color: var(--accent);
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary) 90%, var(--accent) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 13px 32px;
  border-radius: 7px;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(17,71,122,0.20);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-shadow: 0px 1px 2px #13171944;
  letter-spacing: 0.03em;
}
.btn-primary:disabled,
.btn-primary[disabled] {
  cursor: not-allowed;
  background: #334659;
  color: #8c97a5;
  opacity: 0.6;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  color: #161b22;
  box-shadow: 0 3px 12px 0 rgba(245, 166, 35, 0.11);
}
/* Secondary UIButton (eg. newsletter) */
.btn-secondary {
  background: #EAEFF4;
  color: #232932;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #d0d7df;
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin-left: 16px;
  cursor: pointer;
  z-index: 102;
  transition: color 0.2s;
  padding: 5px 13px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--accent);
}
/* --- Mobile Menu Overlay/Drawer --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,27,34,0.95);
  z-index: 300;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.55,.4,.39,1.2);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 16px rgba(18,21,27,0.25);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.35rem;
  margin: 32px 24px 16px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 305;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 36px 0 28px;
}
.mobile-nav a {
  width: 100%;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  padding: 13px 0 13px 8px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--hover);
  color: var(--accent);
}

@media only screen and (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media only screen and (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------------------------------------------------------
   TYPOGRAPHY & HEADINGS: INDUSTRIAL MODERN
------------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #EAEFF4;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  line-height: 1.13;
  text-shadow: 0 2px 6px #11131b44;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  line-height: 1.18;
}
h3 {
  font-size: 1.42rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5 {
  font-size: 1.16rem;
  font-weight: 600;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
  color: var(--accent);
}
small {
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* ------------------------------------------------------------------------
   FLEXBOX LAYOUTS & MANDATORY PATTERNS
------------------------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: var(--bg-card);
  border-radius: 13px;
  box-shadow: var(--card-shadow);
  padding: 24px 22px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(17,71,122,0.12);
  margin-bottom: 20px;
  color: #222933;
  min-width: 280px;
  max-width: 440px;
}
.testimonial-content p {
  color: #181C24;
  font-size: 1.07rem;
  margin-bottom: 11px;
  line-height: 1.7;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: #2c3440;
}
.stars {
  color: var(--accent);
  font-size: 1.18em;
  letter-spacing: 2.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .service {
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 22px 20px 16px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.feature:hover, .service:hover {
  box-shadow: 0 6px 24px 0 rgba(245,166,35,.12);
}
.feature img, .service img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}

.services-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0 0 0;
}
.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border-radius: 9px;
  padding: 13px 19px;
  box-shadow: 0 1.5px 6px rgba(22,27,34,0.12);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  text-align: center;
  width: 112px;
  gap: 7px;
}

.process-list, .logistics-list, .advantages-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.process-list li, .logistics-list li, .advantages-list li, .service-list li {
  flex: 1 1 270px;
  background: var(--bg-card);
  padding: 19px 16px 16px 17px;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-list img, .logistics-list img, .advantages-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/* Cards & Spacing --- universal container margin/gap enforcement */
.card, .testimonial-card, .feature, .service {
  margin-bottom: 20px !important;
}

/* ------------------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------------------ */
.hero {
  width: 100%;
  background: linear-gradient(87deg, #161b22 50%, #232932 100%);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 3px 44px #0c111633;
  min-height: 320px;
  margin-bottom: 60px;
  padding: 56px 0 58px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero .container {
  align-items: flex-start;
  flex-direction: row;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 780px;
  padding: 0 12px;
  color: #fff;
  gap: 18px;
}
.hero h1 {
  color: #EAEFF4;
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.19em;
  margin-bottom: 22px;
  color: #d8e0e9;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 8px;
}

/* ------------------------------------------------------------------------
   CONTACT SECTION (INFO)
------------------------------------------------------------------------ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--secondary);
}
.contact-info img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
}

.map-embed {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-card);
  padding: 22px 0;
  border-radius: 9px;
  box-shadow: 0 1.5px 7px rgba(0,0,0,.10);
}
.map-embed img {
  width: 70px;
  height: 70px;
}

/* ------------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------------ */
footer {
  width: 100%;
  background: #101419;
  box-shadow: 0 -1px 12px 0 rgba(12,16,28,0.11);
  margin-top: 72px;
  padding: 32px 0 0 0;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-menu a {
  color: #c5d8ea;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--accent);
  color: #101419;
}
.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: var(--bg-card);
  border-radius: 11px;
  padding: 22px 24px;
  box-shadow: 0 1px 7px 0 rgba(22,27,34,0.12);
}
.newsletter form {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  margin-bottom: 5px;
}
.newsletter input[type="email"] {
  background: #e7ecf2;
  border: 1.5px solid #ccd6e0;
  color: #212530;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 1rem;
  width: 220px;
  margin-bottom: 0;
}
.newsletter input[type="email"]:disabled {
  background: #d8dee6;
  color: #707a84;
  cursor: not-allowed;
}
.brand-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: #b0bbc8;
  font-size: 0.99rem;
}
.brand-info img {
  width: 44px;
  height: 44px;
}

/* ------------------------------------------------------------------------
   TESTIMONIALS CAROUSEL / LIST
------------------------------------------------------------------------ */
.testimonials-carousel, .testimonials-list-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  align-items: stretch;
}

/* ------------------------------------------------------------------------
   TRUST/ADVANTAGE/INFO ELEMENTS
------------------------------------------------------------------------ */
.trust-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.trust-item {
  flex: 1 1 220px;
  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 18px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}
.trust-item img {
  width: 37px;
  height: 37px;
  margin-bottom: 4px;
}

/* ------------------------------------------------------------------------
   TYPOGRAPHY SCALE & VISUAL HIERARCHY
------------------------------------------------------------------------ */
@media (max-width: 1200px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 225px; }
}
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.21rem; }
  .hero { padding: 26px 0 30px 0; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1rem; }
  header .container { height: 56px; }
  .brand-info img { width: 34px; height: 34px; }
}

/* ------------------------------------------------------------------------
   RESPONSIVE FLEXBOX ADJUSTMENTS
------------------------------------------------------------------------ */
@media (max-width: 940px) {
  .features-grid, .services-list, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .process-list, .logistics-list, .advantages-list, .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonials-carousel, .trust-elements {
    flex-direction: column;
    gap: 18px;
  }
  .footer-menu, .services-icons-grid {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 20px;
  }
  .section {
    margin-bottom: 38px;
    padding: 25px 8px;
  }
  .testimonials-carousel, .testimonials-list-section .content-wrapper {
    gap: 10px;
  }
  .card-container {
    gap: 12px;
  }
  .newsletter form {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .brand-info {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }
  .hero {
    padding: 32px 0 28px 0;
    min-height: 142px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ------------------------------------------------------------------------
   MICRO-INTERACTIONS & HOVER EFFECTS
------------------------------------------------------------------------ */
section, .feature, .service, .testimonial-card, .card {
  transition: box-shadow .2s cubic-bezier(.4,.29,.25,1), background .2s;
}
.feature:hover, .service:hover, .card:hover {
  box-shadow: 0 7px 30px 0 #f5a62322, 0 2px 14px #0c111644;
}
.testimonial-card:hover {
  background: #f7fafb;
  box-shadow: 0 4px 18px #e77c1619;
}
footer .brand-info img, .logo img {
  transition: filter 0.22s;
}
footer .brand-info img:hover, .logo img:hover {
  filter: drop-shadow(0 1px 7px #f5a62355);
}

/* Universal focus-visible outline for accessbility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1.5px;
}

/* ------------------------------------------------------------------------
   COOKIE CONSENT BANNER/BUTTONS + POPUP
------------------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--bg-card);
  color: #EAEFF4;
  box-shadow: 0 -2px 24px #151a2287;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 20px 21px 32px;
  gap: 28px;
  transition: transform 0.31s ease, opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 1.07rem;
  color: #e5ecf6;
  margin-bottom: 6px;
  max-width: 72vw;
  font-family: 'Roboto', sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 11px 18px;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 1px 6px #0c111622;
}
.cookie-btn.setting {
  background: #7a8593;
}
.cookie-btn.secondary {
  background: #e0e4ea;
  color: #232932;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--accent);
  color: #121419;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #232932;
  color: var(--accent);
}
.cookie-btn.setting:hover, .cookie-btn.setting:focus {
  background: #273547;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #de9212;
  color: #fff;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 7px 17px 7px;
  }
  .cookie-banner .cookie-text {
    max-width: 90vw;
    font-size: 0.95rem;
  }
}
/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  z-index: 20000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(22,27,34,0.83);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.3s cubic-bezier(.37,.4,.49,1.32);
}
.cookie-modal.active {
  display: flex;
}
@keyframes fadeInCookieModal {
  to { opacity:1 }
  from { opacity:0 }
}
.cookie-modal-dialog {
  background: var(--bg-card);
  padding: 32px 30px 28px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 32px #141d2d99;
  max-width: 430px;
  width: 98vw;
  color: #EAEFF4;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: appearCookieModal 0.33s cubic-bezier(.37,.4,.49,1.32);
}
@keyframes appearCookieModal {
  from { transform: scale(.89); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: var(--accent);
  margin-bottom: 1px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-category-toggle input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}
.cookie-category-toggle .cookie-category-label {
  font-size: 1rem;
  color: #d4deed;
}
.cookie-category-toggle .required {
  color: var(--accent);
  font-size: 0.85em;
  margin-left: 4px;
  font-weight: 700;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
}

/* Hide the modal on small screens at open/close for better perfomance */
@media (max-width: 520px) {
  .cookie-modal-dialog {
    padding: 18px 8px 14px 8px;
    min-width: 0;
    max-width: 97vw;
  }
}

/* ------------------------------------------------------------------------
   MISC: TABLES, BLOCKQUOTES, ETC. (OPTIONAL)
------------------------------------------------------------------------ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  padding: 13px 11px;
  text-align: left;
  border-bottom: 1.5px solid #262c34;
  color: #dbe4ef;
  background: #22272d;
  font-family: 'Roboto', sans-serif;
}
th {
  background: var(--primary);
  color: #fff !important;
}
blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: #cf931b;
  margin: 18px 0;
  font-style: italic;
}

/* ------------------------------------------------------------------------
   SCROLLBAR THEME
------------------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 13px;
  background: #101419;
}
::-webkit-scrollbar-thumb {
  background: #232932;
  border-radius: 9px;
  border: 3px solid #101419;
}
::-webkit-scrollbar-thumb:hover {
  background: #29303b;
}

/* Remove unwanted default focus from custom buttons */
button {
  outline: none;
}
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1.5px;
}

/* ------------------------------------------------------------------------
   PRINT/COPY/SELECTION
------------------------------------------------------------------------ */
::selection {
  background: var(--accent);
  color: #161b22;
}

/* ========================================================================
   END FERORA INVESTMENT INDUSTRIAL MODERN FLEXBOX STYLESHEET
 ======================================================================== */
