/* === 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,main,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,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181b20;
  color: #e0e5ea;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #181b20;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f7cf91;
  outline: none;
}

ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}

/* === BRANDING & INDUSTRIAL MODERN STYLE === */
:root {
  --primary: #174871;
  --secondary: #F5A623;
  --accent: #F7F7F7;
  --background-dark: #181b20;
  --surface: #23272d;
  --surface-light: #222328;
  --metalic: #79818a;
  --text-dark: #222328;
  --text-light: #e0e5ea;
  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: #f7f7f7;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(14,19,24,0.14);
}
h2 {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #e0e5ea;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.text-highlight {
  background: var(--surface);
  color: #fff;
  padding: 14px 20px;
  border-left: 5px solid var(--secondary);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1.07rem;
}
.mission-statement, .team-brief {
  background: var(--surface-light);
  border-left: 4px solid var(--primary);
  color: #f2f2f7;
  padding: 16px 22px;
  border-radius: 5px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  letter-spacing: .01em;
  font-size: 1.08rem;
}

/* === CONTAINER & GENERAL SPACING === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;  /* Prevents accidental grid fallback */
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
/* Pattern containers */
.card-container, .card-grid, .categories_grid, .category_tiles, .category_overview, .service_card_grid, .tips_grid, .feature_grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  background-color: #fff;
  color: #222328;
  padding: 20px 30px;
  margin-right: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 20px 0 rgba(30,37,46,0.14);
  border-left: 5px solid var(--secondary);
  min-width: 260px;
  max-width: 390px;
  margin-bottom: 20px;
}
.feature-item, .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-card {
  background: var(--surface);
  border-radius: 10px;
  padding: 26px 24px 22px 22px;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.08);
  min-width: 225px;
  max-width: 340px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.15s;
  border-left: 4px solid var(--primary);
}
.service-card:hover, .service-card:focus {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 5px 32px 0 rgba(25,39,45,0.14);
  border-left-color: var(--secondary);
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: linear-gradient(90deg, #23272d 80%, #181b20 100%);
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
  border-bottom: 2px solid #23272d;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
}
.logo img {
  height: 38px;
  margin-right: 18px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  color: #e0e5ea;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 13px;
  border-radius: 4px;
  font-size: 0.97rem;
  transition: background 0.16s, color 0.19s;
}
nav a:hover, nav a.active {
  background: var(--secondary);
  color: #222328;
}
.cta-primary {
  appearance: none;
  display: inline-block;
  background: var(--secondary);
  color: #222328;
  font-family: var(--font-display);
  border-radius: 100px;
  padding: 14px 30px;
  font-weight: 800;
  border: none;
  font-size: 1.03rem;
  box-shadow: 0 2px 12px rgba(245,166,35,0.09);
  letter-spacing: 0.02em;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.25s, color 0.12s, transform 0.23s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #222328;
  color: var(--secondary);
  transform: translateY(-2px) scale(1.035);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--secondary);
  font-size: 2rem;
  line-height: 1;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px;
  margin-left: 18px;
  transition: background 0.16s;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  background: rgba(255,255,255,0.08);
  outline: none;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #222328ed;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  width: 100vw;
  min-height: 100vh;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.43,.86,.67,1.22);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 22px 0 32px 22px;
  color: var(--secondary);
  background: transparent;
  border: none;
  font-size: 2.2rem;
  align-self: flex-start;
  cursor: pointer;
  z-index: 1202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  padding: 16px;
  border-radius: 5px;
  font-weight: 700;
  font-family: var(--font-display);
  background: transparent;
  font-size: 1.18rem;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #222328;
}

/* ==== HERO SECTION ==== */
section:first-of-type {
  background: linear-gradient(110deg, #23272d 90%, #181b20 100%);
  border-bottom: 1px solid #23272d;
}

/* === FEATURES & CATEGORIES === */
.feature_grid, .category_tiles, .category_overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature_grid > div, .tips_grid > div {
  background: var(--surface);
  border-radius: 10px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 310px;
  padding: 26px 19px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 10px rgba(30,37,46,0.07);
  border-left: 4px solid var(--metalic);
  transition: border-color 0.22s, box-shadow 0.19s;
}
.feature_grid > div:hover, .tips_grid > div:hover {
  border-left: 4px solid var(--secondary);
  box-shadow: 0 0 24px 2px rgba(245,166,35,0.08);
}
.feature_grid h3,
.tips_grid strong {
  margin: 10px 0 8px 0;
  color: var(--secondary);
  font-size: 1.1rem;
}

.category_tiles > div, .category_overview > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border-radius: 8px;
  padding: 20px 10px;
  gap: 12px;
  box-shadow: 0 1px 10px rgba(30,37,46,0.10);
  font-family: var(--font-display);
  font-weight: 600;
  color: #f7f7f7;
  font-size: 1.05rem;
  transition: box-shadow 0.19s, transform 0.15s, background 0.19s;
  min-width: 140px;
  cursor: pointer;
}
.category_tiles > div:hover, .category_overview > div:hover {
  box-shadow: 0 5px 28px 0 rgba(25, 39, 45, 0.20);
  background: var(--secondary);
  color: #222328;
  transform: scale(1.04);
}
.category_overview > div img, .category_tiles > div img {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  filter: grayscale(0.2) brightness(0.98) contrast(1.12);
}

.categories_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.categories_grid a {
  background: var(--surface);
  border-radius: 7px;
  padding: 14px 20px;
  font-size: 1rem;
  color: #eee;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 8px;
  min-width: 120px;
  text-align: center;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 1px 10px rgba(30,37,46,0.05);
  transition: background 0.18s, color 0.13s, transform 0.13s;
}
.categories_grid a:hover {
  background: var(--secondary);
  color: #23272d;
  transform: translateY(-2px) scale(1.02);
}

.search_bar {
  display: flex;
  flex-direction: row;
  margin-bottom: 24px;
  padding: 0;
  align-items: center;
}
.search_bar input {
  flex: 1;
  font-size: 1.1rem;
  padding: 14px 20px;
  border-radius: 7px;
  border: 1.5px solid var(--surface);
  background: var(--surface);
  color: #fff;
  transition: border-color 0.18s, background 0.18s;
  font-family: var(--font-body);
  letter-spacing: .01em;
}
.search_bar input:focus {
  outline: none;
  border-color: var(--secondary);
  background: #23272d;
}

/* === SERVICE CARDS, TIPS, UPGRADE OPTIONS === */
.service_card_grid, .tips_grid, .upgrade_options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.tips_grid > div {
  max-width: 300px;
}
.upgrade_options ul {
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.upgrade_options > div > a {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 700;
}
.upgrade_options > div > a:hover {
  text-decoration: underline;
}

/* === STEPS ON PAGES === */
.steps-list, .steps-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.steps-list > div, .steps-listing ol {
  background: var(--surface);
  border-radius: 8px;
  padding: 18px 22px 15px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  box-shadow: 0 1px 10px 0 rgba(27,36,43,0.09);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.steps-list > div img {
  width: 30px; margin-bottom: 7px;
}
.steps-listing ol {
  list-style-type: decimal;
  font-size: 1.07rem;
  color: #f7f7f7;
  font-family: var(--font-display);
  font-weight: 600;
  margin-left: 18px;
}

/* === TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.testimonial-card {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 390px;
  background: #fff;
  color: #222328;
  font-size: 1.07rem;
  border-radius: 12px;
  box-shadow: 0 3px 20px 0 rgba(30,37,46,0.14);
  border-left: 5px solid var(--secondary);
  margin-bottom: 20px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #23272d;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card strong {
  align-self: flex-end;
  color: #174871;
  font-size: 1em;
}

/* === FORM & PREVIEW SECTION === */
.form-guide {
  background: var(--surface);
  border-radius: 7px;
  padding: 18px 23px 16px 23px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #f7f7f7;
}
.form-guide ul {
  margin-bottom: 8px;
}
.preview-section {
  margin-bottom: 12px;
  background: var(--surface-light);
  padding: 14px 19px;
  border-radius: 7px;
  color: #bec6cf;
  font-size: 0.98rem;
  border-left: 3px solid var(--secondary);
}

.location-map {
  background: var(--surface-light);
  border-radius: 7px;
  padding: 25px 22px;
  color: #bec6cf;
  text-align: center;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  padding: 26px 22px;
  border-radius: 9px;
  color: #e0e5ea;
  border-left: 4px solid var(--secondary);
  margin-bottom: 18px;
}

/********* FOOTER ********/
footer {
  background: #23272d;
  margin-top: 50px;
  padding: 32px 0 18px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer img {
  height: 33px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0;
}
footer nav a {
  color: #bec6cf;
  font-size: 0.99rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 0.17s;
}
footer nav a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  color: #e0e5ea;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footer-copy {
  color: #747880;
  font-size: 0.94rem;
  margin-top: 18px;
}

/********* COOKIE BANNER & MODAL ********/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #222328;
  border-top: 3px solid var(--primary);
  padding: 18px 14px 20px 14px;
  z-index: 1300;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.09);
  color: #e0e5ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookiebanneranim 0.6s ease;
}
@keyframes cookiebanneranim {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
  font-size: 1rem;
  text-align: center;
  color: #f7f7f7;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 100px;
  padding: 10px 22px;
  border: none;
  background: var(--secondary);
  color: #222328;
  cursor: pointer;
  font-size: 1rem;
  margin: 0 4px;
  box-shadow: 0 1px 8px 0 rgba(245,166,35,0.13);
  transition: background 0.13s, color 0.14s, transform 0.12s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #fea825;
  color: #181b20;
  outline: none;
  transform: scale(1.03);
}
.cookie-btn.sec {
  background: #23272d;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn.sec:hover {
  background: var(--secondary);
  color: #23272d;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14,18,27,0.74);
  z-index: 1350;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookiemodalfadeIn .3s;
}
@keyframes cookiemodalfadeIn {
  from { opacity: 0; }  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  color: #23272d;
  border-radius: 13px;
  padding: 36px 32px 30px 32px;
  max-width: 420px;
  width: 90vw;
  min-width: 300px;
  box-shadow: 0 8px 32px rgba(30,37,46,0.18);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 11px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #23272d;
}
.cookie-modal__category input[type="checkbox"] {
  margin-right: 10px;
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 11px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

/* === CTA & BENEFITS BLOCKS === */
.cta-block {
  background: var(--primary);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px 0 rgba(15,30,50,0.11);
  padding: 42px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-block h2 {
  font-size: 1.55rem;
  font-weight: 800;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #f3f3f3;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 8px;
}

/********** UTILITY CLASSES *********/
.text-section {
  background: var(--surface);
  border-radius: 7px;
  padding: 20px 26px;
  color: #dedee0;
  margin-bottom: 24px;
}
.text-image-section > * {
  flex: 1 1 180px;
}
.price-list {
  margin-top: 16px;
  margin-bottom: 12px;
}
.price-list li {
  color: #dedede;
}
.category_links {
  margin-top: 16px;
  margin-bottom: 14px;
}
.category_links a {
  color: var(--secondary);
  font-weight: 700;
  transition: text-decoration 0.17s;
}
.category_links a:hover {
  text-decoration: underline;
}

/********** MEDIA QUERIES **********/
@media (max-width: 1140px) {
  .container {
    max-width: 100vw;
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 7px;
  }
  nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  section {
    padding: 32px 8px;
  }
  .card-container, .card-grid, .categories_grid, .category_tiles, .category_overview, .service_card_grid, .tips_grid, .feature_grid, .testimonial-slider, .upgrade_options ul {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 6px;
  }
  header .container {
    gap: 2px;
  }
  nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonial-card {
    padding: 18px 14px;
    min-width: 95vw;
    max-width: 100vw;
    margin-right: 0;
  }
  .cta-block {
    padding: 24px 10px;
  }
  .feature_grid > div, .tips_grid > div, .service-card {
    min-width: 0;
    max-width: 100vw;
    padding: 20px 12px 16px 13px;
    border-radius: 9px;
  }
  .steps-list {
    flex-direction: column;
    gap: 17px;
  }
  .steps-list > div {
    padding: 13px 10px 13px 13px;
  }
  .categories_grid a,
  .category_tiles > div,
  .category_overview > div {
    min-width: 95vw;
    max-width: 100vw;
    text-align: left;
  }
  .testimonial-slider {
    gap: 15px;
  }
  .cookie-modal__content {
    padding: 24px 7px 14px 7px;
    min-width: 0;
    width: 97vw;
    max-width: 97vw;
  }
}
@media (max-width: 520px) {
  .footer-contact, .footer-copy, .location-map, .text-section, .cta-block, .mission-statement, .team-brief {
    font-size: 0.98rem;
    padding-left: 10px; padding-right: 10px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
  .cookie-banner {
    font-size: 0.97rem;
    padding: 7px 5px 8px 5px;
  }
}

/********** FOCUS VISIBILITY (A11Y) ***********/
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/********** TRANSITION COMMONS *********/
button, .cta-primary, a, input {
  transition: background 0.19s, color 0.15s, border-color 0.19s, box-shadow 0.17s, transform 0.18s;
}

/********** SCROLLBAR (MODERN/CLEAN) **********/
::-webkit-scrollbar {
  width: 10px; background: #23272d;
}
::-webkit-scrollbar-thumb {
  background: #32383f; border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/************ CUSTOM CHECKBOX (for cookie modal) ***********/
.cookie-modal__category input[type="checkbox"] {
  accent-color: var(--secondary);
}

/************ Z-INDEX CORRECTNESS ***********/
header   { z-index: 100; position: relative; }
.mobile-menu { z-index: 1200; }
.mobile-menu-close { z-index: 1202; }
.cookie-banner { z-index: 1300; }
.cookie-modal { z-index: 1350; }

/************ MISCELLANEOUS ***********/
.text-section h2, .text-section h3, .text-section h4 {
  color: var(--secondary);
  margin-bottom: 9px;
}
.user_rights_list li, .user_obligations_list li {
  color: #f3f3f3;
}
.opt-out-info {
  color: #fed37e;
  font-size: 0.98rem;
  margin-top: 9px;
  border-left: 3px solid var(--secondary);
  padding-left: 11px;
  background: #222328;
  border-radius: 3px;
  margin-bottom: 0;
}

/***** BUTTONS APPEARANCE RESET FOR SAFARI/MAC *****/
button::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* End of style.css */
