/* ===========================================================
   CSS Reset & Base Styles for Supra Sparkle (geometric_structured)
   =========================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #273152;
  background-color: #F6F7FB;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  border: none;
  background: none;
}
ul, ol {
  padding-left: 1.5em;
}
li + li {
  margin-top: 8px;
}
a {
  color: #21B0B6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #273152;
  outline: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ===============
   Layout Patterns
   =============== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(39,49,82,0.07);
  padding: 32px 20px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Section spacing pattern */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/* Cards and Grids */
.card-container, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: flex-start;
}

.card {
  background: #F6F7FB;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(39,49,82,0.05);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(33,176,182,0.15);
  z-index: 2;
}
.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 {
  background: #F6F7FB;
  border-left: 5px solid #21B0B6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(39,49,82,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #273152;
  margin: 0 0 8px 0;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card cite {
  font-size: 0.96rem;
  font-style: normal;
  color: #273152;
  letter-spacing: 0.04em;
}
.testimonial-card:hover {
  border-left-color: #273152;
  box-shadow: 0 8px 24px rgba(33,176,182,0.15);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* General Spacing for Utility */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* =======================
   Header & Navigation
   ======================= */
header {
  background: #fff;
  border-bottom: 2.5px solid #F6F7FB;
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: 0 2px 10px 0 rgba(39,49,82,0.06);
  padding: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 0;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #273152;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.19s, color 0.19s;
}
header nav a:hover,
header nav a:focus {
  background: #21B0B6;
  color: #fff;
}
header nav a.cta-primary {
  background: #21B0B6;
  color: #fff;
  margin-left: auto;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(39,49,82,0.06);
  transition: background 0.18s, transform 0.18s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #273152;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
header nav img {
  height: 38px;
  margin-right: 12px;
}

/* Mobile Burger button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: #21B0B6;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  z-index: 250;
  transition: background 0.19s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(33,176,182,0.13);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #273152;
  outline: none;
}

/* Mobile Navigation Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 251;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.55,0,0.1,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #21B0B6;
  color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border: none;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(33,176,182,0.13);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #273152;
  outline: none;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: #273152;
  padding: 12px 0;
  border-bottom: 1px solid #E0E3EA;
  width: 100%;
  border-radius: 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #21B0B6;
  color: #fff;
}

/* Hide main nav/show mobile burger on small screens */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}
/* =======================
   Footer Styles
   ======================= */
footer {
  background: #273152;
  color: #fff;
  padding: 36px 0 0 0;
  border-top: 3px solid #21B0B6;
  position: relative;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  background: none;
  box-shadow: none;
  padding: 20px 0 0 0;
  margin-bottom: 0;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-navigation a {
  color: #21B0B6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.18s;
}
.footer-navigation a:hover
,.footer-navigation a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-information {
  font-size: 0.97rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-information img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

/* =======================
   Hero Styles
   ======================= */
.hero {
  background: #21B0B6;
  color: #fff;
  min-height: 220px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 6px 24px 0 rgba(33,176,182,0.09);
}
.hero h1, .hero p {
  color: #fff;
}
.hero a.cta-primary {
  margin-top: 24px;
  background: #fff;
  color: #21B0B6;
  border: 2px solid #fff;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.hero a.cta-primary:hover,
.hero a.cta-primary:focus {
  background: #273152;
  color: #fff;
  border: 2px solid #fff;
}

/* =========================
   CTA Buttons & Micro UX
   ========================= */
.cta-primary {
  display: inline-block;
  background: #21B0B6;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 30px;
  font-size: 1.05rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(39,49,82,0.06);
  border: none;
  margin-top: 12px;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #273152;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 8px 26px 0 rgba(33,176,182,0.19);
  outline: none;
}

/* =========================
   Features (Grids)
   ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(39,49,82,0.07);
  padding: 24px 20px;
  min-width: 230px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 16px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px rgba(33,176,182,0.18);
  transform: translateY(-2px) scale(1.035);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #F6F7FB;
  padding: 0;
}
.feature-grid h3 {
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #273152;
  margin-bottom: 8px;
}
.feature-grid p {
  color: #273152;
  font-size: 0.97rem;
}

/* =========================
   Text Sections, Lists, FAQ
   ========================= */
.text-section {
  margin-top: 20px;
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
  color: #273152;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section li {
  margin-bottom: 7px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.faq-accordion > div {
  background: #F6F7FB;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(39,49,82,0.13);
  transition: box-shadow 0.18s;
}
.faq-accordion h3 {
  margin-bottom: 7px;
  font-size: 1.07rem;
  color: #273152;
}
.faq-accordion p {
  color: #273152;
  font-size: 0.97rem;
}

/* =========================
   Categories Filter (Blog)
   ========================= */
.categories-filter {
  margin-top: 32px;
}
.categories-filter h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #273152;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.categories-filter ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0;
}
.categories-filter li a {
  display: inline-block;
  background: #F6F7FB;
  color: #273152;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
}
.categories-filter li a:hover,
.categories-filter li a:focus {
  background: #21B0B6;
  color: #fff;
}

/* =========================
   Legal Page Styles
   ========================= */
.legal, .legal .text-section {
  background: #fff;
  color: #273152;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(39,49,82,0.06);
  padding: 32px 24px;
}
.legal h1, .legal h2 {
  color: #273152;
  margin-bottom: 16px;
}
.legal ul, .legal ol { color: #273152; }

/* =========================
   Blog List Styles
   ========================= */
.blog-list ul {
  margin: 0 0 22px 0;
  padding: 0;
  list-style: none;
}
.blog-list li {
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid #E0E3EA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.blog-list li:last-child {
  border-bottom: none;
}
.blog-list a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  color: #273152;
  transition: color 0.16s;
}
.blog-list a:hover,
.blog-list a:focus {
  color: #21B0B6;
}
.blog-list span {
  font-size: 0.93rem;
  color: #21B0B6;
  background: #F6F7FB;
  border-radius: 7px;
  padding: 3px 10px;
}

/* =========================
   Z-Indexes
   ========================= */
header,
.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-close,
.cookie-banner,
.cookie-modal {
  z-index: 1000;
}

/* =========================
   Cookie Consent Banner
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #273152;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 16px;
  box-shadow: 0 -4px 16px 0 rgba(39,49,82,0.17);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  border-radius: 999px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 22px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, transform 0.12s;
}
.cookie-banner .accept {
  background: #21B0B6;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #fff;
  color: #21B0B6;
}
.cookie-banner .reject {
  background: #fff;
  color: #21B0B6;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #21B0B6;
  color: #fff;
}
.cookie-banner .settings {
  background: #21B0B6;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #F6F7FB;
  color: #21B0B6;
}

/* =========================
   Cookie Preferences Modal
   ========================= */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,49,82,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
  z-index: 1100;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(39,49,82,0.15);
  max-width: 430px;
  width: 95vw;
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #273152;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover { background: #21B0B6; }
.cookie-modal h2 {
  font-size: 1.14rem;
  margin-bottom: 10px;
  color: #273152;
  letter-spacing: 0.04em;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #273152;
}
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 26px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 46px;
  height: 26px;
  cursor: pointer;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0;
  width: 46px;
  height: 26px;
  background: #F6F7FB;
  border-radius: 13px;
  transition: background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked ~ .cookie-slider {
  background: #21B0B6;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #273152;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle input[type="checkbox"]:checked ~ .cookie-slider:before {
  background: #fff;
  transform: translateX(18px);
}
.cookie-category.essential label {
  color: #273152;
  opacity: 0.65;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-actions button {
  border-radius: 999px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.045em;
  cursor: pointer;
  background: #21B0B6;
  color: #fff;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal-actions button.cancel {
  background: #fff;
  color: #273152;
  border: 1.3px solid #21B0B6;
}
.cookie-modal-actions button.cancel:hover {
  background: #F6F7FB;
  color: #21B0B6;
}
.cookie-modal-actions button.save {
  background: #21B0B6;
  color: #fff;
}
.cookie-modal-actions button.save:hover {
  background: #273152;
  color: #fff;
}

/* ======================
   Responsive Styles
   ====================== */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .feature-grid > div, .card { min-width: 180px; }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 26px 10px;
    border-radius: 12px;
  }
  .contact-information {
    font-size: 0.95rem;
  }
  .footer-navigation a { font-size: 0.99rem; }
  .hero {
    padding: 22px 12px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.12rem; }
  .container, .content-wrapper, .card {
    padding-right: 7px;
    padding-left: 7px;
  }
  .content-wrapper { padding: 19px 5px; }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  section {
    padding-top: 14px;
    margin-bottom: 36px;
  }
  header {
    box-shadow: 0 3px 8px rgba(39,49,82,0.13);
  }
  .testimonial-card {
    flex-direction: column;
    padding: 18px 12px;
  }
  .feature-grid > div {
    min-width: 130px;
    padding: 18px 10px;
    min-height: 120px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: left;
    font-size: 0.97rem;
  }
  .mobile-menu-close { top: 18px; right: 12px; }
  .mobile-nav {
    padding: 22px 10px;
  }
  .legal, .legal .text-section {
    padding: 13px 6px;
    border-radius: 9px;
  }
}
@media (max-width: 560px) {
  .hero { min-height: 120px; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-modal-dialog {
    max-width: 96vw;
    padding: 12px 3px 10px 10px;
  }
}
@media (max-width: 400px) {
  header nav a, .footer-navigation a { font-size: 0.84rem; }
  .cta-primary, .cookie-banner button { font-size: 0.93rem; }
}

/* ========== Animations for hamburger & transitions ========== */
@keyframes mobileSlideIn {
  from { transform: translateX(-100%); opacity: 0.2; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu.open { animation: mobileSlideIn 0.23s cubic-bezier(.4,1.2,.6,1) 1; }


/* ============= Visual Geometric Details ===================== */
/* Angular corners & divider accents for geometric_structured look */
section > .container > .content-wrapper:not(.hero):not(.legal):not(.thank-you) {
  border: 2.5px solid #21B0B6;
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 1px 7px 0 rgba(33,176,182,0.06);
}
/* Icon angular box */
.feature-grid img {
  border-radius: 8px 28px 8px 28px;
  background: #21B0B6;
  padding: 7px;
}

/* ============== Utilities & Micro-interactions ============== */
.card, .feature-grid > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.19s, transform 0.17s, border-color 0.16s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px 0 rgba(33,176,182,0.15);
  z-index: 5;
}

::-webkit-input-placeholder { color: #b6b7c0; }
::-moz-placeholder { color: #b6b7c0; }
:-ms-input-placeholder { color: #b6b7c0; }
::placeholder { color: #b6b7c0; }

/* =========== Accessibility: Focus Outline ========== */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #21B0B6;
  outline-offset: 2px;
}

/* END OF CSS */