/* ====================================================================== */
/* 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,
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%;
    background: #F5F7FA;
    scroll-behavior: smooth;
}
body {
    background: #F5F7FA;
    color: #19232b;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    min-height: 100vh;
    line-height: 1.65;
}
img {
    border-style: none;
    max-width: 100%;
    display: block;
    height: auto;
}
a {
    color: #113246;
    text-decoration: none;
    transition: color 0.2s;
}
a:focus, a:hover {
    color: #269EC0;
    outline: none;
}
ul, ol {
    list-style-position: inside;
    margin-left: 1.5em;
    margin-bottom: 0.8em;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #113246;
    margin-bottom: 0.4em;
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

@media (min-width: 600px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}

p, li, span {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #19232b;
    font-size: 1em;
}
*
{
  box-sizing: border-box;
}

/* ====================================================================== */
/* BRAND COLORS AS CSS VARIABLES */
/* ====================================================================== */
:root {
  --primary: #113246;
  --secondary: #269EC0;
  --accent: #F5F7FA;
  --text: #18232b;
  --section-bg: #FFFFFF;
  --muted: #E3E9ED;
  --border: #d6dde3;
  --btn-hover: #156085;
  --shadow: 0 6px 24px rgba(18,36,60,0.08);
  --radius: 11px;
}

/* ====================================================================== */
/* CONTAINER, GENERAL LAYOUT, FLEX SPACINGS */
/* ====================================================================== */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
  padding-top: 16px;
  padding-bottom: 16px;
}
footer .footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 32px;
}

main {
  flex: 1;
  width: 100%;
}

/* --- Mandatory Pattern (.section etc.) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  position: relative;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  flex: 1 1 calc(33% - 24px);
  min-width: 240px;
}
.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: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 180px;
  max-width: 420px;
  margin-right: 20px;
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(18,36,60,0.15);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Content wrapper in sections */
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  align-items: flex-start;
}

/* ====================================================================== */
/* HEADER, LOGO, MAIN NAV, BUTTONS, BURGER MENU  */
/* ====================================================================== */
header {
  background: var(--section-bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.logo-link img {
  max-height: 54px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-left: 3vw;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.07rem;
  color: var(--primary);
  padding: 8px 2px;
  border-radius: 3.5px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
  text-decoration: underline;
}
.btn-primary {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px 34px;
  font-size: 1.09rem;
  font-weight: bold;
  box-shadow: 0 2px 18px rgba(15, 50, 75, 0.09);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.13s;
  margin-left: 8px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(18,36,60,0.20);
}
/* Mobile hamburger menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  padding: 6px 13px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* =============================== */
/* MOBILE MENU OVERLAY             */
/* =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: -100vw;
  bottom: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--section-bg);
  z-index: 8000;
  box-shadow: 0 0 44px rgba(20,30,40,0.2);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: transform .36s cubic-bezier(.37,.19,.60,1), opacity .26s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 14px 24px 7px 0;
  font-size: 2.3rem;
  background: none;
  color: var(--primary);
  border: none;
  cursor: pointer;
  padding: 3px 15px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--muted);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.28rem;
  color: var(--primary);
  padding: 14px 4px;
  border-radius: 4.5px;
  transition: color 0.22s, background 0.15s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--muted);
  color: var(--secondary);
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    padding: 13px 21px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .header-flex {
    gap: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .logo-link img {
    max-height: 44px;
  }
}

/* ====================================================================== */
/* HERO SECTION */
/* ====================================================================== */
.hero {
  background: linear-gradient(97deg, #F5F7FA 60%, #E3E9ED 100%);
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  gap: 17px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.05rem;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.14rem;
  max-width: 680px;
  margin-bottom: 1.2em;
}
@media (min-width: 600px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero p {
    font-size: 1.21rem;
  }
}

/* ====================================================================== */
/* FEATURES & SERVICES */
/* ====================================================================== */
.features .content-wrapper,
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Individual feature/service grid */
.feature-grid, .service-item {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow .18s;
  border: 1px solid var(--border);
}
.feature-grid:hover, .service-item:hover {
  box-shadow: 0 10px 30px rgba(18,36,60,0.14);
}
.feature-icon, .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  background: var(--muted);
  border-radius: 7.5px;
  margin-right: 8px;
}
.feature-desc h3, .service-item h3 {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 0.4em;
}
.feature-desc p, .service-item p {
  font-size: 1em;
  color: #18232b;
}

/* Service-list flex wrapper */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .features .content-wrapper, .services .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .feature-grid, .service-item {
    min-width: 270px;
    flex: 1 1 calc(48% - 30px);
    margin-right: 15px;
  }
  .service-list {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

/* ====================================================================== */
/* TEXT SECTIONS & BULLETED/ORDERED LISTS  */
/* ====================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.03rem;
  background: none;
  padding: 9px 0 9px 0;
}
.text-section ul,
.text-section ol {
  margin-bottom: 0;
  padding-left: 0.7em;
  color: #18232b;
  font-size: 1em;
  line-height: 1.8;
}
.text-section li {
  margin-bottom: 7px;
  padding-left: 6px;
  list-style: disc inside;
}
.text-section h3 {
  font-size: 1.09rem;
  margin-bottom: 2px;
}

/* ====================================================================== */
/* CTA BOX / CTA SECTION */
/* ====================================================================== */
.cta {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 36px 20px 36px 20px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .btn-primary {
  background: #fff;
  color: var(--secondary);
  margin-top: 22px;
  transition: background .2s, color .2s, box-shadow .17s;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: var(--primary);
  color: #fff;
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 24px 0 0;
}

/* ====================================================================== */
/* TESTIMONIALS / CARDS */
/* ====================================================================== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  max-width: 410px;
  min-width: 220px;
  background: #fff;
  color: #113246;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px 22px;
  font-size: 1.06rem;
  font-style: italic;
  box-shadow: var(--shadow);
  gap: 12px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .16s;
}
.testimonial-card span {
  display: inline-block;
  color: #269EC0;
  font-size: 0.97rem;
  margin-top: 6px;
  font-style: normal;
}

/* ====================================================================== */
/* FOOTER */
/* ====================================================================== */
footer {
  background: var(--primary);
  color: #fff;
  border-top: 1px solid var(--border);
}
.footer-logo img {
  max-height: 45px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  opacity: 0.85;
  padding: 1px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
  opacity: 1;
}
.footer-contact {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 5px;
}
.footer-contact a {
  color: var(--secondary);
}

footer .container {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Responsive footer flex */
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ====================================================================== */
/* LEGAL SECTIONS */
/* ====================================================================== */
.legal .content-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 22px;
  box-shadow: var(--shadow);
  margin-top: 46px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.legal h2 {
  font-size: 1.2rem;
  margin-top: 1.1em;
}
.legal ul {
  margin-bottom: 2px;
}
.legal ul li {
  list-style-type: disc;
  color: #19232b;
  margin-bottom: 6px;
}

/* ====================================================================== */
/* CARD STRUCTURE / GENERIC CARD */
/* ====================================================================== */
.card {
  padding: 28px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 200px;
  transition: box-shadow .18s, border-color .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 35px rgba(18,36,60,0.13);
  border-color: var(--secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ====================================================================== */
/* CONTACT/CALL SECTION */
/* ====================================================================== */
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact .text-section {
  flex: 3 1 320px;
}
.contact .cta-box {
  flex: 1 1 160px;
}
@media (min-width: 800px) {
  .contact .content-wrapper {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
}

/* ====================================================================== */
/* RESPONSIVE LAYOUTS (MOBILE FIRST) */
/* ====================================================================== */
@media (max-width: 900px) {
  .container { max-width: 100%; padding-left: 12px; padding-right: 12px; }
  .section { padding: 30px 9px; margin-bottom: 38px; }
  .footer-flex { gap: 18px; }
  .testimonial-card { margin-right: 0; }
  .testimonials .content-wrapper { gap: 17px; }
  .feature-grid, .service-item { min-width: 170px; padding: 16px 8px; gap: 11px; }
}
@media (max-width: 640px) {
  .content-grid, .card-container, .features .content-wrapper, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .about .text-section, .legal .content-wrapper, .hero .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
  .cta { padding: 26px 6px; }
  footer .container { padding: 16px 7px; }
  .hero { padding: 36px 0 36px 0; }
  .hero h1 { font-size: 1.27rem; }
  .hero p { font-size: 0.98rem; }
  .testimonial-card, .feature-grid, .service-item, .card {
    max-width: 100%;
    min-width: 0;
    margin-right: 0;
    gap: 7px;
    padding: 14px 8px;
  }
  .main-nav, .footer-nav, .footer-contact { font-size: 0.97rem; }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ====================================================================== */
/* MICRO-INTERACTIONS / TRANSITIONS / HOVER EFFECTS */
/* ====================================================================== */
.btn-primary, .card, .feature-grid, .service-item, .testimonial-card, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.17s, color 0.15s, border 0.13s;
}
.btn-primary:active {
  background: var(--btn-hover);
  color: #fff;
}
.feature-grid:focus-within, .service-item:focus-within {
  border-color: var(--secondary);
}

/* ====================================================================== */
/* COOKIE CONSENT BANNER AND COOKIE MODAL */
/* ====================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid var(--muted);
  box-shadow: 0 -4px 28px rgba(15, 38, 50, 0.14);
  padding: 22px 8vw 22px 8vw;
  z-index: 9001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  color: #19232b;
  transition: transform 0.38s, opacity 0.26s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  flex: 1 1 auto;
  margin-right: 16px;
  max-width: 480px;
}
.cookie-banner .cookie-btn {
  margin-left: 7px;
  margin-right: 0;
  padding: 11px 20px;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 7px rgba(20, 44, 60, 0.09);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus  {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-settings {
  background: none;
  color: var(--primary);
  border: 1px solid var(--primary);
  margin-left: 8px;
  transition: border 0.16s, background 0.11s, color 0.11s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--muted);
  border-color: var(--secondary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 12px;
    padding-right: 12px;
    gap: 10px;
  }
  .cookie-banner p { margin-bottom: 6px; }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,34,43, 0.16);
  z-index: 9002;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  max-width: 410px;
  width: 94vw;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(21,37,55,.23);
  padding: 32px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Georgia', 'Times New Roman', serif;
  animation: popup-modal 0.33s cubic-bezier(.33,.36,.37,1);
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 5px;
  color: var(--primary);
}
.cookie-modal label {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  position: relative;
  display: inline-block;
}
/* Toggle Switch */
.cookie-toggle input {
  display: none;
}
.cookie-toggle label {
  cursor: pointer;
}
.cookie-switch {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--muted);
  border-radius: 10px;
  transition: background 0.2s;
}
.cookie-toggle input:checked + .cookie-switch {
  background: var(--secondary);
}
.cookie-switch:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 3px;
  top: 3px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(14,32,55,0.13);
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-switch:before {
  transform: translateX(14px);
}

.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
  border: none;
  border-radius: var(--radius);
  padding: 8px 23px;
  font-size: 1.03rem;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  top: 6px;
  right: 14px;
  cursor: pointer;
  line-height: 1;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover {
  color: var(--secondary);
  background: var(--muted);
  border-radius: 5px;
}
@keyframes popup-modal {
  0% { opacity:0; transform: translateY(40px) scale(.94); }
  100% { opacity:1; transform: none; }
}


/* ====================================================================== */
/* ACCESSIBILITY IMPROVEMENTS */
/* ====================================================================== */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Subtle selection coloring */
::selection {
  background: #269EC0;
  color: #fff;
}

/* ====================================================================== */
/* ADDITIONAL UTILITIES & OVERRIDES  */
/* ====================================================================== */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}
::-webkit-input-placeholder { color: #8291a5; }
::-moz-placeholder { color: #8291a5; }
:-ms-input-placeholder { color: #8291a5; }
::placeholder { color: #8291a5; }

/* Misc Classes for Quick Padding/Margins */
.mb-0 { margin-bottom: 0!important; }
.mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; }
.mt-10 { margin-top: 10px; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

/* Hide visually but keep accessible*/
.visually-hidden {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/* Hide scroll while modal/mobile menu open */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}
