/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {
  line-height: 1.5;
  background: #1a1c22;
  color: #f5f8ff;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
:focus { outline: 2px solid #E3E114; outline-offset: 2px; }

/* VARIABLE FALLBACKS */
:root {
  --primary: #1A5098;
  --secondary: #E3E114;
  --accent: #F5F8FF;
  --gray-900: #232428;
  --gray-700: #40434A;
  --gray-500: #8E9297;
  --metal: #929399;
  --white: #f5f8ff;
  --danger: #b62020;
  --mono-font: 'Roboto Mono', 'Consolas', monospace;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --header-height: 72px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background: #232428;
}
::-webkit-scrollbar-thumb {
  background: #3c3f44;
  border-radius: 8px;
}

/* GENERAL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }
p, li, blockquote, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.6;
}
strong {
  color: var(--secondary);
  font-weight: bold;
}
blockquote {
  border-left: 4px solid var(--secondary);
  margin: 20px 0; padding: 12px 20px; background: #262730;
  color: var(--accent); font-style: italic; border-radius: 8px;
}
a { color: var(--accent); transition: color 0.16s; }
a:hover, a:active, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1a1c22;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(40,44,55,0.14);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #22242b;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(30,30,30,0.08), 0 0.5px 0.5px #31333A inset;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  color: var(--accent);
}
.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;
  background: var(--accent);
  color: #232428;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(41,47,59,0.12);
  min-width: 230px;
  max-width: 380px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(41,47,59,0.22);
  transform: translateY(-2px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #17181ecc;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 2px solid #232428;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.logo img {
  height: 42px; width: auto; filter: grayscale(10%) contrast(1.1);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--mono-font);
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  padding: 9px 0 7px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.cta-header {
  background: var(--secondary);
  color: #1a1c22;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 10px;
  margin-left: 22px;
  box-shadow: 0 2px 8px rgba(160,160,40,0.09);
  text-transform: uppercase;
  border: none;
  transition: background 0.15s, color 0.18s, transform 0.1s;
  cursor: pointer;
}
.cta-header:hover, .cta-header:focus {
  background: #edee40;
  color: #16171b;
  transform: scale(1.03) translateY(-1px);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  position: absolute;
  top: 18px;
  right: 20px;
  display: none;
  z-index: 130;
  background: #22242b;
  color: var(--secondary);
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 6px 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(70,70,60,0.11);
  transition: background 0.14s, color 0.13s, transform 0.12s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #31333A;
  color: var(--primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(30,32,36, 0.97);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(.68,-0.09,.48,1.26);
  opacity: 1;
  box-shadow: 0 6px 28px rgba(14,14,17,0.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 420;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232428;
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0 0 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-radius: 7px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #1a1c22;
}

/* HERO SECTION */
.hero {
  background: #1A1C22;
  background-image: linear-gradient(92deg, rgba(58,65,77,0.18) 0%, rgba(61,71,82,0.08) 49%, rgba(44,46,60,0.13) 100%);
  box-shadow: 0 2px 20px 0 rgba(15,18,25,0.13);
  padding: 56px 0 56px 0;
  margin-bottom: 60px;
  border-radius: 0 0 26px 26px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--secondary);
  font-size: 2.9rem;
  margin-bottom: 10px;
}
.hero p {
  color: var(--accent);
  font-size: 1.19rem;
  max-width: 540px;
  margin-bottom: 20px;
}
.cta-main {
  display: inline-block;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.13rem;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 15px rgba(26,80,152,0.14);
  transition: background 0.18s, color 0.16s, transform 0.14s;
  border: 2px solid var(--metal);
  margin-top: 8px;
  cursor: pointer;
}
.cta-main:hover, .cta-main:focus {
  background: var(--secondary);
  color: #18191d;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(213,215,33,0.08);
  border-color: var(--primary);
}

/* FEATURES & LISTS */
.features .content-wrapper, .about .content-wrapper, .services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features ul, .about ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 12px;
}
.features ul li, .about ul li, .services ul li {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 1.04rem;
  gap: 14px;
  line-height: 1.6;
  margin: 0 0 2px 0;
}
.features ul img {
  width: 27px; height: 27px;
  filter: grayscale(0.45) brightness(1.1) drop-shadow(0 1px 0 #E3E11455);
  margin-right: 10px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div {
  flex: 1 1 180px;
  background: #252730;
  border-radius: 12px;
  color: var(--accent);
  padding: 22px 19px;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(23,24,30,0.13);
  border-left: 4px solid var(--secondary);
  transition: box-shadow 0.19s, transform 0.13s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px rgba(227,225,20,0.13);
  transform: translateY(-1.5px) scale(1.02);
}
.services ul li {
  padding: 18px 20px;
  background: #232428;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(60,58,80,0.09);
  margin-bottom: 16px;
  color: var(--accent);
  border-left: 3px solid var(--primary);
}
.services ul li strong {
  font-size: 1.08em;
}
.services ul li span {
  color: var(--gray-500);
  font-size: 1rem;
  display: block;
  margin-top: 3px;
}

/* CARDS & EVENTS */
.event-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event-overview-card {
  background: #21232a;
  border-left: 4px solid var(--primary);
  border-radius: 13px;
  padding: 20px 22px;
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(60,90,140,0.11);
  margin-bottom: 18px;
  transition: box-shadow 0.14s, border 0.13s;
}
.event-overview-card h3 {
  color: var(--secondary);
}
.event-overview-card:hover {
  box-shadow: 0 5px 22px rgba(33,80,180,0.17);
  border-left: 4px solid var(--secondary);
  background: #22242b;
}

/* ABOUT, TEAM & TESTIMONIALS */
.about-preview, .about, .team-section {
  background: #20232a;
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 2px 14px rgba(40,44,55,0.12);
}
.team-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 4px;
}
.text-section {
  flex: 1 1 260px;
  min-width: 200px;
  background: #242730;
  border-radius: 11px;
  padding: 17px 17px 14px 20px;
  color: var(--accent);
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(40,50,70,0.07);
  border-left: 3px solid var(--primary);
}
.trainer-quotes {
  margin-top: 36px;
  color: var(--secondary);
  font-style: italic;
}

/* TESTIMONIALS FLEX CONTAINER */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 15px;
}
.testimonials h2 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* PARTICIPANT STORIES */
.participant-stories {
  margin-top: 38px;
  background: #22242b;
  border-radius: 11px;
  color: var(--accent);
  padding: 22px 26px;
}
.participant-stories h3 {
  color: var(--secondary);
}
.participant-stories ul {
  margin-top: 8px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

/* CONTACT & INFO */
.contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.contact-details, .contact-info {
  flex: 1 1 300px;
  min-width: 200px;
  background: #232428;
  border-radius: 11px;
  color: var(--accent);
  padding: 24px 24px 20px 22px;
  border-left: 3px solid var(--primary);
  box-shadow: 0 1px 12px rgba(50,60,80,0.06);
}
.info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CTA SECTION */
.cta {
  background: #191a20;
  border-radius: 18px;
  margin-bottom: 48px;
  box-shadow: 0 3px 16px rgba(122,131,152,0.11);
  text-align: center;
  padding: 40px 0 40px 0;
}
.cta h2 {
  font-size: 2.1rem;
  color: var(--secondary);
  margin-bottom: 14px;
}
.cta .cta-main {
  margin-top: 12px;
  box-shadow: 0 3px 18px rgba(26,80,152,0.09);
}

/* THANK YOU MESSAGE */
.thank-you-message {
  color: var(--secondary);
  font-size: 1.22rem;
  margin: 14px 0 18px 0;
}

/* FOOTER */
footer {
  background: #18191d;
  padding: 44px 0 32px 0;
  width: 100%;
  border-top: 2px solid #22242c;
}
.footer-logo {
  margin-bottom: 18px;
}
.footer-logo img {
  height: 40px;
  filter: grayscale(15%);
}
.footer-copy {
  color: var(--metal);
  font-size: 0.97rem;
  margin-top: 18px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  font-family: var(--mono-font);
  color: var(--accent);
  font-size: 0.99rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 0.13s;
  margin-bottom: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}

/* MODAL, COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #21232a;
  color: var(--accent);
  box-shadow: 0 -4px 32px rgba(41,47,59,0.21), 0 -1px 0 var(--secondary);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 26px;
  gap: 22px;
  min-height: 56px;
  font-size: 1rem;
  animation: bottomIn 0.4s cubic-bezier(.36,1.56,.64,1) both;
}
@keyframes bottomIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  color: #191a20;
  background: var(--secondary);
  border: none;
  border-radius: 9px;
  padding: 8px 19px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(215,215,34,0.12);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-reject {
  background: var(--danger);
  color: var(--white);
}
.cookie-banner .cookie-settings {
  background: var(--gray-500);
  color: var(--accent);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #845c5c;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--secondary);
  color: #191a20;
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10016;
  background: #23242b;
  color: var(--white);
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 10px 44px rgba(40,36,23,0.33);
  border-radius: 16px;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  animation: modalIn 0.37s cubic-bezier(.25,1.48,0.44,1) both;
}
@keyframes modalIn {
  from { transform: translate(-50%,30%); opacity: 0; }
  to { transform: translate(-50%,-50%); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  color: var(--secondary);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}
.cookie-modal button {
  border-radius: 10px;
  padding: 8px 20px;
  border: none;
  font-family: var(--font-display);
  font-size: 1.07rem;
  background: var(--secondary);
  color: #232428;
  box-shadow: 0 4px 18px rgba(215,215,34,0.10);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.13s, color 0.10s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* MEDIA QUERIES: RESPONSIVE FLEX LAYOUTS */
@media (max-width: 1150px) {
  .container { max-width: 100%; }
}
@media (max-width: 900px) {
  .main-nav, .cta-header { gap: 16px; font-size: 0.95rem; }
  .feature-grid, .features .content-wrapper, .about .content-wrapper {
    gap: 12px;
  }
  .testimonials .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* Header adjustments */
  header {
    flex-direction: row;
    height: 62px;
    padding: 0 14px;
  }
  .main-nav, .cta-header {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo {
    margin-right: 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section, .cta, .about-preview, .about, .team-section {
    padding: 25px 10px;
  }
  .content-wrapper, .features .content-wrapper, .about .content-wrapper, .services .content-wrapper,
  .card-container, .content-grid, .feature-grid, .team-section .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column !important;
    gap: 17px !important;
  }
  .testimonial-card, .card, .event-overview-card, .participant-stories, .text-section, .contact-details, .contact-info {
    max-width: 100%; width: 100%;
  }
  .footer-logo img {
    height: 32px;
  }
  .cta-main {
    width: 100%; text-align: center; padding: 13px 0;
  }
}
@media (max-width: 530px) {
  .container {
    padding: 0 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-copy {
    font-size: 0.87rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 13px 7px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    min-width: 90vw; padding: 20px 7px 20px 7px;
  }
}

/* INDUSTRIAL METALLIC ACCENTS */
.section, .about-preview, .about, .team-section, .feature-grid > div, .card, .event-overview-card, .participant-stories, .contact-details, .contact-info {
  border-bottom: 2px solid #41454f;
  border-right: 2px solid #41454f;
  /* "Brushed Metal" effect: */
  background-image: repeating-linear-gradient(135deg, rgba(80,88,105,0.08) 0 2px, transparent 2px 8px);
}

/* BUTTON FX (URBAN, INDUSTRIAL FEEL)*/
button, .cta-main, .cta-header, .cookie-banner button, .cookie-modal button {
  box-shadow: 0 3px 13px rgba(36,46,52,0.17), 0 -2px 0 rgba(227,225,20,0.08) inset;
  border-bottom: 3px solid #bcbdbf;
  border-right: 2px solid #bcbdbf;
  text-shadow: 0 1px 2px #181A1F44;
}
button:active, .cta-main:active, .cta-header:active {
  box-shadow: 0 1px 4px rgba(30,30,40,0.11); transform: translateY(2px) scale(0.98);
}

/* MICRO-INTERACTIONS */
.card, .event-overview-card, .feature-grid > div, .text-section, .services ul li {
  transition: box-shadow 0.18s, transform 0.15s, background 0.15s, border-left 0.17s;
}
.card:hover, .event-overview-card:hover, .feature-grid > div:hover, .services ul li:hover {
  box-shadow: 0 8px 24px rgba(30,50,115,0.18) !important;
  border-left: 4px solid var(--secondary) !important;
  background: #232428 !important;
  transform: scale(1.026);
}

/* MISCELLANEOUS */
dt { font-weight: bold; }
dd { margin-bottom: 16px; }

/* Z-INDEX STACKING */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 300 !important;
}

/* PREVENT ABSOLUTE FOR CONTENT CARDS (only for deco) */
.card, .testimonial-card, .event-overview-card, .feature-grid > div, .services ul li, .text-section, .participant-stories, .container, .content-wrapper {
  position: relative;
}

/* NO OVERLAPPING OF CARDS/ELEMENTS */
.section, .card-container, .content-grid, .features .content-wrapper, .about .content-wrapper, .testimonials .content-wrapper, .participant-stories, .about-preview, .about, .team-section, .footer-nav {
  gap: 24px;
}
.card, .testimonial-card, .event-overview-card, .feature-grid > div, .services ul li, .text-section {
  margin-bottom: 20px;
}

/* ACCESSIBILITY IMPROVEMENTS */
[tabindex]:focus, button:focus, .cta-main:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--primary) !important;
}

/* HELPER CLASSES */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

/**** END OF INDUSTRIAL MODERN FLEX CSS ****/