/* =====================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7F8FA;
  color: #13305F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #13305F;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4FB182;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 2px solid #E0E6ED;
  margin: 2em 0;
}

/* =====================
   TYPOGRAPHY: Bold/Modern
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Open Sans', serif;
  color: #13305F;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 4px; }
p { margin-bottom: 16px; }
blockquote {
  font-size: 1.2rem;
  font-style: italic;
  background: #fff;
  border-left: 5px solid #4FB182;
  margin: 0 0 16px 0;
  padding: 16px 20px;
  color: #13305F;
  border-radius: 8px;
  font-family: 'Roboto Slab', serif;
}

/* =====================
   CONTAINER & LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(19,48,95, 0.07);
  position: relative;
}

@media (max-width: 900px) {
  .container {
    max-width: 700px;
    padding: 0 10px;
  }
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding: 0 5vw;
  }
  .section {
    padding: 18px 4vw;
    margin-bottom: 28px;
  }
}

.header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(19,48,95, 0.03);
}

/* =====================
   HEADER / NAVIGATION
   ===================== */
header {
  background: #fff;
  border-bottom: 2px solid #E0E6ED;
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #13305F;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #4FB182;
  color: #fff;
  text-decoration: none;
}
.main-nav .btn-primary {
  margin-left: 14px;
  background: #13305F;
  color: #fff;
  box-shadow: 0 2px 8px rgba(19,48,95,0.10);
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #4FB182;
  color: #fff;
  box-shadow: 0 6px 20px rgba(79,177,130,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: #13305F;
  color: #fff;
  font-size: 1.6rem;
  border: none;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1200;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #4FB182;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #13305FCC;
  display: flex;
  flex-direction: column;
  z-index: 1201;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.7,0.2,0.2,1);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 10px 0;
  background: #fff;
  border: none;
  font-size: 2.2rem;
  color: #13305F;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(19,48,95,0.10);
  transition: background 0.2s, color 0.2s;
  z-index: 1202;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #4FB182;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 36px;
  margin-top: 48px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.3rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 8px;
  text-align: left;
  letter-spacing: 0.015em;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4FB182DD;
  color: #fff;
}

/* =====================
   MAIN BOLD BUTTONS & CTA
   ===================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 32px;
  padding: 14px 36px;
  cursor: pointer;
  margin-top: 8px;
  outline: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.13s;
  text-align: center;
  box-shadow: 0 2px 10px rgba(19,48,95,0.11);
}
.btn-primary {
  background: #13305F;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #4FB182;
  color: #fff;
  box-shadow: 0 6px 24px rgba(79,177,130,0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #4FB182;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #13305F;
  color: #fff;
  box-shadow: 0 6px 24px rgba(19,48,95,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* =====================
   HERO/BANNER SECTIONS
   ===================== */
.hero {
  background: linear-gradient(100deg, #13305F 80%, #4FB182 117%);
  color: #fff;
  padding: 72px 0 56px 0;
  text-align: left;
  border-radius: 0 0 32px 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1,
.hero h2 {
  color: #fff;
  font-weight: 900;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-weight: 600;
}
.hero .btn-primary {
  margin-top: 12px;
  font-size: 1.2rem;
  padding: 16px 38px;
}

/* =====================
   FLEX LAYOUTS & GRIDS
   ===================== */
.feature-grid, .benefits-grid, .trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature-item, .benefit-item, .badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(19,48,95,0.06);
  padding: 26px 18px;
  gap: 15px;
  min-width: 210px;
  flex: 1 1 260px;
  max-width: 320px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.feature-item:hover,
.benefit-item:hover,
.badge-item:hover {
  box-shadow: 0 6px 24px 0 rgba(79,177,130,0.19);
  transform: translateY(-2px) scale(1.03);
}
.feature-item img, .benefit-item img, .badge-item img {
  width: 34px;
  height: 34px;
}
.trust-badges-grid {
  gap: 24px;
}

@media (max-width: 900px) {
  .feature-grid, .benefits-grid, .trust-badges-grid {
    gap: 20px;
    justify-content: flex-start;
  }
}
@media (max-width: 750px) {
  .feature-grid, .benefits-grid, .trust-badges-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .benefit-item, .badge-item {
    min-width: unset;
    max-width: 100%;
  }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F7F8FA;
  border: 2.5px solid #4FB182;
  border-radius: 20px;
  padding: 30px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(19,48,95,0.06);
  position: relative;
  color: #13305F;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Roboto Slab', serif;
  color: #4FB182;
  font-size: 4rem;
  position: absolute;
  top: -26px;
  left: 18px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.testimonial-card blockquote {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 8px 0;
  color: #13305F;
  font-size: 1.13rem;
  line-height: 1.6;
  font-family: 'Roboto Slab', serif;
}
.testimonial-card span {
  font-size: 1.25em;
  color: #4FB182;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 4px;
}
.testimonial-card strong {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #13305F;
}

@media (max-width: 650px) {
  .testimonial-card {
    padding: 18px 10px;
    border-radius: 12px;
  }
}

/* =====================
   CTA SECTION
   ===================== */
.cta {
  background: #13305F;
  color: #fff;
  border-radius: 24px;
  margin-bottom: 48px;
  padding: 46px 24px;
  box-shadow: 0 8px 28px 0 rgba(19,48,95, 0.14);
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta .btn-primary {
  margin-top: 8px;
}
@media (max-width: 800px) {
  .cta {
    padding: 32px 10px;
    border-radius: 16px;
  }
  .cta h2 { font-size: 1.3rem;}
}

/* =====================
   TEXT & IMAGE FLEX SECTIONS
   ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.text-section {
  margin-bottom: 16px;
}
.text-section ul {
  margin-top: 8px;
  margin-bottom: 1em;
  padding-left: 1.1em;
}
.text-section li {
  margin-bottom: 8px;
  list-style-type: disc;
  font-size: 1rem;
}

/* =====================
   LISTS & CARDS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(19,48,95,0.1);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  min-width: 200px;
  padding: 22px 18px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 7px 24px rgba(79,177,130,0.13);
  transform: translateY(-3px) scale(1.035);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/********************
   PROCESS/ORDER STYLES
*********************/
.process-overview ol,
.process-steps ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.12rem;
}
.process-overview li,
.process-steps li {
  background: #F7F8FA;
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 600;
  color: #13305F;
  box-shadow: 0 1px 3px rgba(19,48,95,0.04);
  margin-bottom: 0;
  border-left: 5px solid #4FB182;
}
.process-steps li strong {
  font-weight: 800;
  color: #13305F;
}
@media (max-width: 700px) {
  .process-overview ol, .process-steps ol {
    gap: 12px;
    font-size: 1rem;
  }
  .process-overview li,.process-steps li {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 1rem;
  }
}

/********************
   FAQ STYLES
*********************/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}
.faq-category {
  flex: 1 1 260px;
  min-width: 220px;
}
.faq-item {
  background: #F7F8FA;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px 0 rgba(19,48,95,0.06);
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.16rem;
  color: #13305F;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .faq-category {
    min-width: unset;
    flex: 1 1 100%;
  }
}

/********************
   LEGAL & POLICY BLOCKS
*********************/
.legal h2 {
  margin-top: 30px;
  font-size: 1.25em;
  color: #4FB182;
  font-weight: 700;
}
.legal .text-section ul {
  margin-left: 1em;
}
.legal .text-section li {
  margin-bottom: 10px;
  list-style: disc;
}

/********************
   THANK YOU PAGE
*********************/
.thank-you {
  background: #4FB182;
  color: #fff;
  border-radius: 24px;
  margin-bottom: 44px;
  padding: 52px 32px 54px 32px;
  box-shadow: 0 8px 32px 0 rgba(19,48,95, 0.09);
}
.thank-you h1 {
  color: #fff;
  margin-bottom: 20px;
}
.thank-you .btn-primary {
  margin-top: 24px;
  font-size: 1.1rem;
}
.thank-you .text-section a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

/********************
   MAP BLOCK SECTION
*********************/
.map-block address {
  font-style: normal;
  margin: 10px 0 18px 0;
  font-size: 1em;
  color: #13305F;
}
.map-block img {
  margin-right: 8px;
}

/********************
   FOOTER
*********************/
footer {
  background: #13305F;
  color: #fff;
  padding: 36px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #4FB182;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  padding: 6px 12px;
  transition: background 0.15s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #4FB182;
  color: #fff;
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #4FB182;
}
.footer-contact p {
  margin-bottom: 7px;
}

@media (max-width: 650px) {
  footer {
    padding: 26px 0 18px 0;
  }
  .footer-nav {
    gap: 14px;
    margin-bottom: 8px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
}

/***********************************
  COOKIE CONSENT BANNER & MODAL
***********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3400;
  background: #13305F;
  color: #fff;
  padding: 26px 18px 20px 18px;
  box-shadow: 0 -6px 24px rgba(19,48,95,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(0.7,0.3,0.2,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__content {
  flex: 1;
  max-width: 680px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  padding: 9px 24px;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #4FB182;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #fff;
  color: #4FB182;
  box-shadow: 0 4px 12px #4FB18226;
}
.cookie-btn.reject {
  background: #fff;
  color: #13305F;
  border: 2px solid #13305F;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #13305F;
  color: #fff;
  box-shadow: 0 4px 12px #13305F26;
}
.cookie-btn.settings {
  background: transparent;
  color: #4FB182;
  border: 2px solid #4FB182;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #4FB182;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 8vw 12px 8vw;
    font-size: 0.95rem;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50vw; top: 50vh;
  transform: translate(-50%, -50%) scale(0.9);
  min-width: 320px;
  width: 96vw;
  max-width: 430px;
  background: #fff;
  color: #13305F;
  border-radius: 22px;
  box-shadow: 0 16px 62px rgba(19,48,95,0.23);
  z-index: 3700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s, transform 0.33s;
  padding: 32px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.cookie-modal .close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #13305F;
  position: absolute;
  top: 14px; right: 18px;
  cursor: pointer;
  z-index: 3701;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F8FA;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #13305F;
}
.cookie-category label {
  font-size: 1.02rem;
  font-weight: 600;
}
.cookie-category .toggle {
  margin-left: 16px;
  width: 44px;
  height: 24px;
  background: #E0E6ED;
  border-radius: 14px;
  position: relative;
  transition: background 0.14s;
  display: inline-block;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s, background 0.11s;
  box-shadow: 0 1.5px 4px rgba(19, 48, 95, 0.07);
}
.cookie-category .toggle input:checked + .slider {
  background: #4FB182;
  transform: translateX(20px);
}
.cookie-category.essential .toggle,
.cookie-category.essential label {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  font-family: 'Roboto Slab', serif;
  color: #13305F;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 6vw 12px 6vw;
  }
  .cookie-category {
    padding: 10px 8px;
    font-size: 0.98rem;
  }
}

/***********************************
 CARD SPACING ENFORCEMENT
***********************************/
/* Ensure all content cards, sections, grids have at least 20px margin/gap */
.card,
.card-container > *:not(:last-child),
.feature-item,
.benefit-item,
.badge-item,
.testimonial-card {
  margin-bottom: 20px;
}
.section + .section{
  margin-top: 20px;
}

/***********************************
 RESPONSIVE TYPOGRAPHY SCALE
***********************************/
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero h1 { font-size: 2rem;}
}
@media (max-width: 650px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.11rem; }
  .hero h1 { font-size: 1.3rem;}
  .section { padding: 12px 2vw;}
}

/***********************************
 FORM ELEMENTS (if added later)
***********************************/
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  border: 2px solid #E0E6ED;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #13305F;
  background: #F7F8FA;
  margin-bottom: 18px;
  width: 100%;
  outline: none;
  transition: border 0.14s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #4FB182;
  box-shadow: 0 1px 8px 0 #4FB18233;
}
label {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 9px;
  color: #13305F;
}

/***********************************
  MISC MODERN BOLD EFFECTS
***********************************/
::-webkit-selection, ::selection {
  background: #4FB182;
  color: #fff;
}

a:active, button:active {
  outline: none;
}

/***********************************
  ACCESSIBILITY & FOCUS
***********************************/
a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, .cookie-btn:focus-visible {
  outline: 3px solid #4FB182;
  outline-offset: 3px;
}

/***********************************
  PRINT FRIENDLY
***********************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  main, .section { background: none !important; color: #000; }
}

/***********************************
  HIDE ACCESSIBLY
***********************************/
.sr-only {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  height: 1px; width: 1px;
  border: 0 !important;
}
