/* ===================================================
   CSS RESET & NORMALIZE (MOBILE-FIRST)
   =================================================== */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #161616;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
}
a {
  color: #244977;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #111;
  text-decoration: underline;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

/* Typography scale */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #161616;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #121212;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: #222;
  line-height: 1.18;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-size: 1rem;
  color: #202020;
  line-height: 1.65;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #111;
}
small, .small {
  font-size: 0.93rem;
  color: #595959;
}

/* ===================
   BASE CONTAINERS & SECTIONS
   =================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 32px 0 rgba(35,35,35,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .content-wrapper {
    gap: 24px;
  }
}

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: none;
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #161616;
  font-size: 2.1rem;
  padding: 6px 10px;
  margin-left: 16px;
  border-radius: 4px;
  transition: background 0.17s;
  cursor: pointer;
  z-index: 80;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #edeef1;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    position: relative;
    padding: 6px 2px;
    transition: color 0.17s;
    border-radius: 2px;
  }
  .main-nav a:hover, .main-nav a:focus {
    color: #244977;
    background: #f6f7fa;
  }
  .main-nav .cta-primary {
    background: #244977;
    color: #fff;
    border-radius: 18px;
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 1px 8px rgba(36,73,119,0.08);
    transition: background 0.17s, box-shadow 0.19s;
    letter-spacing: 0.04em;
    margin-left: 16px;
  }
  .main-nav .cta-primary:hover,
  .main-nav .cta-primary:focus {
    background: #111;
    color: #fff;
    box-shadow: 0 3px 14px rgba(36,73,119,0.15);
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===================
   MOBILE MENU STYLES
   =================== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 120;
  background: rgba(24, 24, 24, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.32,1,0.64,1), opacity 0.27s ease;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 18px 0 12px 16px;
  align-self: flex-start;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #333;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  margin-top: 16px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 6px 0px;
  border-radius: 2px;
  font-weight: 500;
  transition: color 0.14s, background 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #161616;
  color: #FFB703;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===================
   HERO SECTION
   =================== */
.hero-section {
  background: #161616;
  color: #fff;
  padding: 56px 0 56px 0;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 22px rgba(22,22,22,0.20);
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.15rem;
  margin-bottom: 14px;
  max-width: 600px;
}
.hero-section p {
  color: #e6e6e6;
  font-size: 1.15rem;
  line-height: 1.57;
  max-width: 500px;
  margin-bottom: 24px;
}
.hero-section .cta-primary {
  margin-top: 6px;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 72px 0 72px 0;
  }
  .hero-section .container {
    min-height: 320px;
  }
  .hero-section h1 {
    font-size: 2.85rem;
  }
}

/* ===================
   FEATURE GRID
   =================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 260px;
  background: #f8f8f8;
  padding: 32px 22px 32px 22px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1.5px 9px 0 rgba(22,22,22,0.06);
  min-width: 220px;
  position: relative;
  transition: box-shadow 0.22s, background 0.18s;
}
.feature img {
  width: 40px; height: 40px;
  margin-bottom: 14px;
  filter: grayscale(100%) contrast(1.2);
}
.feature h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.feature p {
  color: #222;
  font-size: 1rem;
}
.feature:hover,
.feature:focus-within {
  background: #fff;
  box-shadow: 0 4px 24px rgba(36,73,119,0.16);
}

/* ===================
   VALUES LIST (.values-list, .value-item)
   =================== */
.values-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.value-item, .service-item {
  flex: 1 1 240px;
  background: #f7f8fa;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(22,22,22,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, background 0.17s;
}
.value-item img, .service-item img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  filter: grayscale(95%) contrast(1.1);
}
.value-item h3, .service-item h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.value-item p, .service-item p {
  font-size: 0.98rem;
}
.value-item:hover, .service-item:hover,
.value-item:focus-within, .service-item:focus-within {
  background: #fff;
  box-shadow: 0 4px 18px #24497721;
}


/* ===================
   TESTIMONIALS
   =================== */
.testimonials-section {
  background: #f2f3f5;
  border-radius: 28px;
  box-shadow: 0 2.5px 20px 0 rgba(22,22,22,0.07);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(26,26,26,0.09);
  border: 1.5px solid #e8e9ea;
  transition: box-shadow 0.19s, border-color 0.18s;
}
.testimonial-card p {
  color: #161616;
  font-size: 1.13rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #244977;
  font-size: 1rem;
  font-weight: 500;
}
.testimonial-meta strong {
  color: #111;
}
.testimonial-card:hover {
  border-color: #24497738;
  box-shadow: 0 3.5px 24px 0 #0c193d1a;
}

/* ===================
   CTA SECTIONS, BUTTONS
   =================== */
.cta-section {
  background: #244977;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 2.5px 20px 0 rgba(22,22,22,0.07);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 48px;
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 12px 32px;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 0 1.5px 12px 0 #ffb70322;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  letter-spacing: 0.03em;
  outline: none;
  text-decoration: none;
}
.cta-primary {
  background: #FFB703;
  color: #141414;
}
.cta-primary:hover, .cta-primary:focus {
  background: #244977;
  color: #fff;
  box-shadow: 0 3.5px 24px 0 #24497736;
}
.cta-secondary {
  background: #fff;
  color: #244977;
  border: 1.5px solid #244977;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #244977;
  color: #fff;
  box-shadow: 0 3.5px 24px 0 #24497734;
}

/* ===================
   FAQ ACCORDION
   =================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f7f8fa;
  padding: 22px 20px;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(29,29,29,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, background 0.14s;
}
.faq-item h3 {
  margin-bottom: 8px;
  color: #244977;
}
.faq-item p {
  color: #161616;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 2.5px 20px 0 rgba(36, 73, 119, 0.12);
  background: #fff;
}
.contact-prompt {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ===================
   TIMELINE/PROCESS LIST
   =================== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.process-timeline li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 15px 16px;
  color: #202020;
  box-shadow: 0 0.5px 5px rgba(36,73,119,0.05);
}
.process-timeline img {
  width: 32px;
  height: 32px;
  filter: grayscale(97%) contrast(1.1);
}

.faq-shortcut {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 500;
}
.faq-shortcut a {
  color: #244977;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 8px;
}
.faq-shortcut img {
  width: 22px;
  height: 22px;
  vertical-align: bottom;
  filter: grayscale(100%);
}

/* ===================
   FOOTER
   =================== */
footer {
  background: #141416;
  color: #fff;
  padding: 48px 0 38px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
  justify-content: center;
}
.footer-nav a {
  color: #f3f3f3;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFB703;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cacaca;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
}
.contact-info img {
  width: 19px;
  height: 19px;
  filter: grayscale(100%) contrast(1.2);
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  gap: 9px;
}
.brand-footer img {
  width: 54px;
  height: auto;
  filter: grayscale(1) brightness(1.2);
}
.brand-footer span {
  color: #e2e2e2;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contact-info, .brand-footer {
    align-items: flex-start;
  }
  .footer-nav {
    justify-content: flex-start;
  }
}

/* ===============
   CARDS, GRIDS, FLEX MANDATORY CLASSES
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 9px 0 rgba(24,24,24,0.06);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  padding: 32px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s;
  border: 1.5px solid #e8e9ea;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 26px 0 #24497719;
  border-color: #24497729;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Quick steps/utility lists */
.quick-steps-list {
  font-weight: 500;
  color: #222;
  margin-top: 18px;
}

/* Case study / next steps info */
.case-study-summary, .next-steps-info {
  background: #24497710;
  border-left: 3px solid #244977;
  border-radius: 9px;
  padding: 16px 22px;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #1b222e;
}
.next-steps-info li {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* Certifications block */
.certifications ul {
  margin-top: 8px;
  margin-left: 16px;
  list-style: disc inside;
}
.certifications li {
  margin-bottom: 8px;
  color: #131313;
  font-size: 0.99rem;
}

/*****************
RESPONSIVE UTILITIES
*****************/
@media (max-width: 992px) {
  .feature-grid, .values-list, .service-list {
    flex-wrap: wrap;
    gap: 18px;
  }
  .card, .feature, .value-item, .service-item {
    flex: 1 1 230px;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.3rem;
    margin-bottom: 13px;
  }
  .container {
    padding: 0 12px;
  }
  .feature, .value-item, .service-item, .card {
    padding: 18px 13px;
  }
  .section, section {
    padding: 28px 10px;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 32px 0 18px 0;
  }
  .content-grid {
    gap: 11px;
  }
  .card-container {
    gap: 11px;
    flex-wrap: wrap;
  }
}

/*****************
SPECIAL / DETAIL ELEMENTS
*****************/
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #1a1a1a;
}
.contact-details img {
  width: 16px;
  height: 16px;
}
.map p {
  color: #244977;
  font-size: 1rem;
  font-style: italic;
}
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}

/*****************
COOKIE CONSENT BANNER & MODAL
*****************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #161616;
  color: #fff;
  padding: 22px 24px;
  z-index: 150;
  box-shadow: 0 -3px 18px #2449771b;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  animation: cookie-fade-in 0.6s;
}
@keyframes cookie-fade-in {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 5px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}
.cookie-actions button {
  background: #fff;
  color: #244977;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 7px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.cookie-actions button:hover, .cookie-actions button:focus {
  background: #FFB703;
  color: #161616;
}
.cookie-settings-button {
  background: #244977;
  color: #fff;
  border: none;
  padding: 7px 26px;
  border-radius: 22px;
  margin-left: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.14s, color 0.14s;
}
.cookie-settings-button:hover, .cookie-settings-button:focus {
  background: #fff;
  color: #244977;
  border: 1.5px solid #244977;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(16,16,16,0.60);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #222;
  max-width: 420px;
  width: 98vw;
  border-radius: 12px;
  box-shadow: 0 10px 50px #24497744;
  padding: 34px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 260;
  transform: translateY(-32px);
  animation: modal-fade-in 0.42s cubic-bezier(0.32,1.11,0.44,1);
}
@keyframes modal-fade-in {
  0% { transform: scale(.95) translateY(48px); opacity: 0; }
  100% { transform: scale(1) translateY(-32px); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #244977;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #161616;
}
.cookie-toggle {
  appearance: none;
  width: 40px; height: 22px;
  border-radius: 22px;
  background: #ccc;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #FFB703;
}
.cookie-toggle:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-category .cookie-locked {
  font-size: 1.13rem;
  color: #AEAEAF;
  margin-left: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 22px;
  font-size: 1.01rem;
  border-radius: 22px;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .accept-all {
  background: #244977;
  color: #fff;
  font-weight: 600;
}
.cookie-modal .accept-all:hover, .cookie-modal .accept-all:focus {
  background: #FFB703;
  color: #222;
}
.cookie-modal .reject-all {
  background: #ededed;
  color: #222;
}
.cookie-modal .reject-all:hover, .cookie-modal .reject-all:focus {
  background: #244977;
  color: #fff;
}
.cookie-modal .save {
  background: #FFB703;
  color: #161616;
  font-weight: 600;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #244977;
  color: #fff;
}

/* Hide the banner if modal is open */
body.cookie-modal-open .cookie-banner {
  display: none;
}

/* ===================
   UTILITY CLASSES
   =================== */
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-8{ margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/**************
MONOCHROME/DRAMA TOUCHES
**************/
hr {
  border: 0;
  border-top: 1.5px solid #e0e0e0;
  margin: 32px 0;
}
blockquote {
  font-style: italic;
  color: #50525a;
  border-left: 3px solid #222;
  padding-left: 18px;
  margin: 24px 0;
}

/* ===================
   Accessibility & FOCUS
   =================== */
*:focus {
  outline: 2px solid #FFB703;
  outline-offset: 2px;
  z-index: 20;
}

/*********
FORMS
*********/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.4px solid #bcbcbc;
  border-radius: 7px;
  padding: 9px 14px;
  margin-bottom: 16px;
  width: 100%;
  background: #fbfbfb;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #244977;
  background: #fff;
}
button, input[type="submit"], .button {
  cursor: pointer;
  background: #244977;
  color: #fff;
  padding: 11px 28px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  box-shadow: 0 1px 7px #2449771a;
}
button:hover, button:focus { background: #FFB703; color: #161616; }

/******************
SCROLLBAR
******************/
::-webkit-scrollbar {
  width: 7px;
  background: #e2e2e2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #bcbcbc;
  border-radius: 8px;
}

/******************
PRINT
******************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section, section {
    background: #fff !important;
    box-shadow: none !important;
  }
}

/******************
FONT-FACE FALLBACKS (GOOGLE FONTS) - Add as needed in HTML <head> for production
******************/
/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
   @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
*/
