/* =======================================================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #191c1f;
  color: #f4f4f9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #f5ae3d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
ul, ol {
  margin-bottom: 16px;
  margin-left: 24px;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #f4f4f9;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
  color: #e2e3e7;
}
strong {
  font-weight: 700;
  color: #f4f4f9;
}

/* =======================================================
   BRAND & INDUSTRIAL MODERN THEME VARIABLES
   ======================================================= */
:root {
  --color-primary: #174e7c;
  --color-secondary: #f4f4f9;
  --color-background: #191c1f;
  --color-surface: #23262a;
  --color-accent: #f5ae3d;
  --color-muted: #747c86;
  --color-metal: #b7bdc7;
  --color-success: #49be7b;
  --color-error: #db545a;
  --radius: 10px;
  --shadow: 0 4px 24px 0 rgba(23,30,36,0.16), 0 1.5px 6px 0 rgba(24,26,30,0.14);
  --transition: all 0.23s cubic-bezier(.6,.22,.3,1);
}

/* Industrial modern: fonts, metallic/urban effects */
body {
  background: var(--color-background);
  color: var(--color-secondary);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

.main-nav, .footer-nav, .mobile-nav {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.015em;
  font-weight: 600;
}

/* =======================================================
   CORE LAYOUT / FLEX SPACING
   ======================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  min-width: 260px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus {
  box-shadow: 0 8px 40px 0 rgba(23,30,36,0.26), 0 2px 8px 0 rgba(24,26,30,0.22);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: #f4f4f9;
  color: #23262a;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px 0 rgba(23,30,36,0.15);
  min-width: 260px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-primary);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 36px 0 rgba(35,38,42,0.15);
  border-left: 5px solid var(--color-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  min-width: 212px;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 42px;
  height: 42px;
  filter: grayscale(15%) contrast(1.3);
}
.feature-item h3 {
  margin: 0;
  color: var(--color-accent);
  font-size: 1.16rem;
  text-shadow: 1px 1px 0 #6d7380;
}

/* Spacing for special lists */
.service-list, .benefit-highlights, .usp-highlights, .analysis-methods,
.reporting-examples ul, .service-steps, .contact-methods ul {
  margin-bottom: 20px;
}
.service-list > li, .benefit-highlights > li, .usp-highlights > li,
 .analysis-methods > li, .reporting-examples ul > li, .service-steps > li,
 .contact-methods ul > li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}
.benefit-highlights > li:before, .usp-highlights > li:before,
.analysis-methods > li:before, .service-list > li:before,
.feature-list .feature-item:before {
  display: inline-block;
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 7px;
}

/*********************
 HERO SECTION
 *********************/
.hero {
  background: linear-gradient(95deg, #23262a 68%, #174e7c 98%);
  padding: 68px 0 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  box-shadow: 0 2px 18px 0 rgba(23,30,36,0.07);
}
.hero .container {
  width: 100%;
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 7px #14202c;
}
.hero p {
  font-size: 1.16rem;
  color: #eaf1f7;
  max-width: 640px;
}
.hero .btn-primary {
  margin-top: 18px;
}


/*********************
 NAVIGATION & HEADER
 *********************/
.site-header {
  width: 100%;
  background: #21252b;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0;
  min-height: 70px;
  box-shadow: 0 1px 9px 0 rgba(17,20,24,0.18);
  position: relative;
  z-index: 20;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header a img {
  height: 42px;
  margin: 0 22px 0 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 28px;
}
.main-nav a {
  color: #d9dde3;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  border-bottom: 2px solid var(--color-accent);
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  padding: 11px 27px;
  border-radius: 30px;
  background: linear-gradient(95deg, #174e7c 71%, #23262a 98%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 16px 0 rgba(23,30,36,0.14);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: 22px;
  display: inline-block;
  line-height: 1.1;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f5ae3d;
  color: #23262a;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 22px 0 rgba(245,174,61,0.13);
}

/*********************
 MOBILE MENU
 *********************/
.mobile-menu-toggle {
  background: none;
  color: #dbdbdb;
  font-size: 2.1rem;
  border: none;
  margin-left: 22px;
  display: none;
  z-index: 40;
  position: relative;
  line-height: 1;
  padding: 0 7px;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23262a;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.7,0,.32,1), opacity 0.18s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 1020;
  padding: 4px 8px;
  transition: color 0.16s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 74px;
  width: 100vw;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.26rem;
  color: #f4f4f9;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #393d48;
  transition: color 0.19s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23262a;
  color: var(--color-accent);
  text-decoration: underline;
}

/*********************
 FOOTER
 *********************/
.site-footer {
  background: #191c1f;
  border-top: 2px solid #23262a;
  color: #a4a9b0;
  font-size: 0.98rem;
  padding: 38px 0 16px 0;
  margin-top: 40px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #a4a9b0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #f5ae3d;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #a7abb3;
}
.footer-info img {
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
  margin-right: 7px;
  filter: grayscale(25%) brightness(1.02);
}

/*********************
 BADGES & PARTNERS
 *********************/
.trust-badges, .partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 10px;
}
.trust-badges img, .partner-logos img {
  background: #23262a;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 1.5px 7px 0 rgba(18,20,24,0.13);
  border: 1px solid #2d2f36;
  height: 38px;
  transition: box-shadow 0.18s;
}
.trust-badges img:hover, .partner-logos img:hover {
  box-shadow: 0 3px 15px 0 rgba(249,190,67,0.18);
}

/*********************
 CTA SECTION
 *********************/
.cta {
  background: linear-gradient(92deg, #23262a 78%, #174e7c 100%);
  box-shadow: 0 4px 24px 0 rgba(23,30,36,0.13);
  border-radius: var(--radius);
  margin-bottom: 54px;
  padding: 50px 20px;
  display: flex;
  min-height: 0;
}
.cta h2 {
  color: var(--color-accent);
  text-shadow: 0 1px 4px #14202c;
  margin-bottom: 14px;
}
.cta p {
  max-width: 700px;
  color: #d0d3d6;
}
.cta .btn-primary {
  margin-top: 19px;
  margin-left: 0;
}

/*********************
 TESTIMONIALS SECTION
 *********************/
.testimonials .testimonial-card {
  margin-bottom: 22px;
  max-width: 600px;
  background: #f4f4f9;
  color: #21252b;
  border-radius: var(--radius);
  align-items: flex-start;
  box-shadow: 0 4px 18px 0 rgba(30,34,38,0.12);
  border-left: 4px solid var(--color-accent);
  padding: 26px 32px;
  font-size: 1rem;
  min-width: 310px;
}
.testimonials .customer-name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 10px;
}
.testimonials .achieved-results {
  color: var(--color-success);
  font-size: 0.9rem;
  margin-top: 7px;
}

/*********************
 LEGAL, ABOUT, CONTACT ETC.
 *********************/
.legal, .about-section, .contact, .confirmation {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 22px;
  margin-bottom: 48px;
}

.contact-details {
  background: #23262a;
  padding: 18px 18px 13px 23px;
  border-radius: 8px;
  margin-bottom: 21px;
  color: #f4f4f9;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: 0 1px 9px 0 rgba(30,34,38,0.09);
}
.contact-details img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 5px;
  filter: grayscale(50%);
}
.map-embed {
  background: #23262a;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 1.5px 7px 0 rgba(18,20,24,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section {
  color: #e2e3e7;
}
.contact-methods ul {
  margin: 0;
  padding-left: 22px;
  color: #e2e3e7;
}

/*********************
 FORMS (if any in the future)
 *********************/
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #394252;
  padding: 10px 14px;
  background: #20232a;
  color: #fff;
  margin-bottom: 18px;
  width: 100%;
  box-shadow: 0 1.5px 6px 0 rgba(17,20,24,0.13);
  transition: border 0.17s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(245,174,62,0.08);
}
label {
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
  color: #b7bdc7;
  font-size: 1rem;
}

/*********************
 COOKIES BANNER
 *********************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  padding: 24px 18px 18px 18px;
  background: #23262a;
  box-shadow: 0 -2px 24px 0 rgba(23,30,36,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9999;
  color: #eee;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.7,0,.32,1), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
  border-top: 2px solid #343942;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner p {
  margin: 0 0 14px 0;
  color: #f4f4f9;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  border-radius: 22px;
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 7px;
  background: #174e7c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(23,30,36,0.13);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cookie-btn.accept {
  background: #49be7b;
  color: #fff;
}
.cookie-btn.reject {
  background: #db545a;
  color: #fff;
}
.cookie-btn.settings {
  background: #23262a;
  color: #f4f4f9;
  border: 1.5px solid #53585f;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: #23262a !important;
  transform: translateY(-1px) scale(1.04);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,28,31,0.93);
  backdrop-filter: blur(1px);
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #23262a;
  border-radius: 14px;
  max-width: 370px;
  padding: 38px 28px 28px 28px;
  color: #f4f4f9;
  box-shadow: 0 8px 38px 0 rgba(25,28,31,0.42);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInModal 0.33s cubic-bezier(.7,0,.32,1);
}
@keyframes fadeInModal {
  from { transform: scale(0.94) translateY(28px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-accent);
  margin-bottom: 15px;
  font-size: 1.16rem;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-category input[type=checkbox][disabled] {
  accent-color: #898c99;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}
.cookie-modal .close-modal {
  background: none;
  color: #f4f4f9;
  border: none;
  font-size: 1.44rem;
  position: absolute;
  right: 18px;
  top: 14px;
  opacity: 0.72;
}
.cookie-modal .close-modal:hover {
  color: var(--color-accent);
  opacity: 1;
}

/*********************
 LISTS & DETAILS
 *********************/
ul, ol {
  color: #e2e3e7;
  line-height: 1.8;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
.section ul, .section ol {
  margin-bottom: 15px;
}

/*********************
 HELPERS & MISCELLANEOUS
 *********************/
.brand-story {
  font-size: 1.08rem;
  color: #ececf0;
  margin-bottom: 10px;
}
.mission-statement {
  color: #b7bdc7;
  font-weight: 600;
  margin-bottom: 14px;
}

/*********************
 RESPONSIVE DESIGN
 *********************/
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 7px;
  }
  .cta, .section {
    padding: 32px 6vw;
  }
  .hero {
    padding: 44px 0 42px 0;
  }
}
@media (max-width: 900px) {
  .footer-info {
    flex-basis: 100%;
    margin-top: 18px;
    padding-left: 0;
  }
  .site-footer .container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .main-nav { display: none !important; }
  .btn-primary { margin-left: 0; margin-top: 7px; }
  .mobile-menu-toggle { display: block; }
  .section, .cta, .hero, .about-section, .legal, .contact, .confirmation {
    padding: 26px 7px;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.99rem;
    flex-wrap: wrap;
  }
  .content-grid, .card-container, .feature-grid, .feature-list, .testimonial-list {
    flex-direction: column !important;
    gap: 19px !important;
    align-items: stretch !important;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    padding: 20px 10px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
}
@media (max-width: 530px) {
  html, body {
    font-size: 15.3px;
  }
  .btn-primary, .cookie-btn {
    padding: 9px 15px;
    font-size: 0.99rem;
    border-radius: 18px;
    min-width: unset;
  }
  .hero h1 { font-size: 1.2rem; }
  .cookie-modal {
    padding: 25px 10px;
    width: 93vw;
    max-width: unset;
  }
  .cookie-modal .close-modal {
    right: 7px; top: 3px;
  }
}

/*********************
 UTILITY CLASSES
 *********************/
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }

/*********************
 FLEXBOX LAYOUTS
 *********************/
.feature-grid,
.feature-list,
.card-container,
.content-grid,
.text-image-section,
.partner-logos,
.trust-badges,
.footer-nav,
.site-footer .container,
.mobile-nav,
.cookie-actions,
.cookie-modal-actions,
.contact-details {
  display: flex;
  flex-wrap: wrap;
}

/*********************
 ANIMATIONS
 *********************/
.btn-primary, .feature-item, .card, .testimonial-card {
  transition: box-shadow 0.17s, background 0.19s, color 0.12s, transform 0.14s;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 8px 35px 0 rgba(23,30,36,0.20);
  background: #1a2a39;
  color: var(--color-accent);
  transform: scale(1.025);
}
.partner-logos img, .trust-badges img {
  transition: box-shadow 0.14s, background 0.20s;
}

/*********************
 INDUSTRIAL MODERN ACCENTS
 *********************/
.card, .feature-item {
  border: 1.5px solid #384450;
  box-shadow: var(--shadow);
  background: linear-gradient(115deg, #23262a 90%, #292f39 100%);
  color: #f4f4f9;
}
/* Visible metallic accent bg */
h3, .feature-item h3, .cta h2 {
  color: var(--color-accent);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px #343c44;
}

/*********************
 END CSS
 *********************/