/* RESET & BASE ---------------------------------------------------------------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*,*:before,*:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, #f4f7fa 0%, #cde1ef 100%);
  color: #20394c;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #20394c; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #6ca36c; }
ul, ol { margin-left: 24px; margin-bottom: 16px; }
strong { font-weight: 600; }

:root {
  --primary: #20394C;
  --secondary: #6CA36C;
  --accent: #F4F7FA;
  --accent-mid: #cde1ef;
  --danger: #d9534f;
  --text-dark: #20394C;
  --text-light: #fff;
  --card-bg: #fff;
  --input-bg: #f4f7fa;
  --shadow: 0 4px 24px rgba(32,57,76,0.10);
  --radius: 14px;
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAVIGATION ------------------------------------------------------------------------------ */
header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(32,57,76,0.06);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 54px;
}
.logo-link img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: var(--font-head);
}
nav a {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #20394c;
  position: relative;
  padding: 4px 0;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover, nav a:focus {
  color: #6ca36c;
}
.btn-primary {
  background: linear-gradient(90deg, #6ca36c 0%, #428875 100%);
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(108,163,108,0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
  outline: none;
  display: inline-block;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#428875 0%, #6ca36c 100%);
  box-shadow: 0 4px 16px rgba(76,163,108,0.13);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #6ca36c;
  border: 2px solid #6ca36c;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(32,57,76,0.03);
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 8px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.12s;
  outline: none;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #6ca36c;
  color: #fff;
  box-shadow: 0 4px 12px rgba(76,163,108,0.10);
  transform: translateY(-2px) scale(1.03);
}

/* Mobile Burger Menu ------------------------------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: #6ca36c;
  color: #fff;
  font-size: 30px;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 22px;
  box-shadow: 0 2px 12px rgba(108,163,108,0.12);
  transition: background 0.2s, color 0.2s;
  z-index: 104;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #20394c;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 32px rgba(32,57,76,0.18);
  z-index: 105;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.71,.06,.59,.93);
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #6ca36c;
  background: none;
  border: none;
  font-size: 38px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 20px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 107;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #20394c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #20394c;
  font-size: 22px;
  font-family: var(--font-head);
  font-weight: 600;
  padding-bottom: 6px;
  transition: color 0.2s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6ca36c;
}

@media (max-width: 1020px) {
  nav {
    gap: 16px;
  }
}
@media (max-width: 930px) {
  header .btn-primary {
    margin-left: 8px;
    padding: 10px 18px;
    font-size: 15px;
  }
}
@media (max-width: 870px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
}

/* LAYOUT PATTERNS --------------------------------------------------------------------------------- */

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 44px rgba(32,57,76,0.18);
  transform: translateY(-2px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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: #f4f7fa;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(32,57,76,0.07);
  margin-bottom: 20px;
  max-width: 430px;
  min-width: 270px;
  flex: 1 1 320px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(32,57,76,0.14);
  transform: translateY(-2px);
}
.testimonial-card p {
  color: #20394c;
  font-size: 18px;
  font-family: var(--font-head);
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #20394c;
}
.stars {
  color: #ffc21a;
  font-size: 18px;
  margin-left: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-item img {
  height: 40px; width: 40px;
}
.feature-item h3 {
  font-size: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  color: #20394C;
  margin-bottom: 5px;
}
.feature-item p {
  color: #405872;
  font-size: 15px;
  font-family: var(--font-body);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(32,57,76,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* HERO + CTA ------------------------------------------------------------------------------------- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
h1,h2,h3 {
  font-family: var(--font-head);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 40px;
  line-height: 1.11;
  color: #20394c;
  margin-bottom: 14px;
}
h2 {
  font-size: 28px;
  color: #20394c;
  margin-bottom: 10px;
}
h3 {
  font-size: 20px;
  color: #20394c;
  margin-bottom: 6px;
}
p, .subheadline, .text-section p, .faq-item p, .address-block, .contact-block, .contact-teaser {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #405872;
  max-width: 800px;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 22px;
  font-family: var(--font-head);
  color: #486a88;
  margin-bottom: 20px;
  font-weight: 400;
}
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(90deg, #f4f7fa 0%, #cde1ef 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(32,57,76,0.06);
  padding: 36px 32px;
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid #e1eaf1;
}
.cta-banner h2 {
  font-size: 28px;
  font-weight: 700;
  color: #20394c;
}
.cta-banner p {
  font-size: 17px;
  margin-bottom: 6px;
}
.cta-banner .btn-primary {
  margin-left: 0;
}

/* FEATURE GRID & CARD FLEX ------------------------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-top: 18px;
}

/* SERVICE LISTS ----------------------------------------------------------------------------------- */
.service-list, .service-list-full {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.service-list li, .service-list-full li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(32,57,76,0.07);
  padding: 18px 22px;
  font-size: 17px;
  color: #20394c;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.service-list li strong, .service-list-full h2 {
  color: #20394c;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}
.service-price, .service-list li span {
  color: #6ca36c;
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  font-family: var(--font-head);
}
.usp-bullets, .advantage-bullets {
  list-style: disc;
  color: #20394c;
  font-size: 17px;
  margin: 18px 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.advantage-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}
.advantage-icons img {
  height: 44px; width: 44px;
}

/* PROCESS STEPS / TIMELINE ------------------------------------------------------------------------- */
.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.10s;
}
.step:hover, .step:focus-within {
  box-shadow: 0 8px 36px rgba(32,57,76,0.13);
  transform: translateY(-2px) scale(1.012);
}
.step-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: #f4f7fa;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(32,57,76,0.05);
  margin-bottom: 7px;
}
.step-icon img {
  width: 28px; height: 28px;
}

.process-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.process-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  font-size: 18px;
  color: #20394c;
  font-family: var(--font-head);
  margin-bottom: 12px;
}
.process-list .step-icon {
  margin-bottom: 0;
  margin-right: 8px;
}

/* TESTIMONIALS ------------------------------------------------------------------------------------ */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.testimonial-card {
  background-color: #fff;
  color: #20394c;
  border-radius: var(--radius);
  box-shadow: 0 1px 9px rgba(32,57,76,0.09);
  font-size: 16px;
  padding: 30px 22px 22px 22px;
  max-width: 410px;
}
.testimonial-card p,
.testimonial-meta { color: #20394c; }
.testimonial-meta span {
  color: #405872;
}

/* FAQ STYLING ------------------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(32,57,76,0.07);
  padding: 21px 30px;
  margin-bottom: 8px;
}
.faq-item h2 {
  font-size: 19px;
  margin-bottom: 9px;
}
.faq-item p { font-size: 16px; }


/* ADDRESS + CONTACT BLOCKS ------------------------------------------------------------------------- */
.address-block, .contact-block {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(32,57,76,0.07);
  padding: 19px 18px;
  color: #20394c;
  font-size: 16px;
  margin-bottom: 20px;
}
.map-embed {
  margin-bottom: 20px;
  background: #f4f7fa;
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  font-style: italic;
  color: #6ca36c;
  min-height: 80px;
}

/* FOOTER  ----------------------------------------------------------------------------------------- */
footer {
  background: #20394c;
  color: #f4f7fa;
  padding: 32px 0 18px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.footer-navigation {
  font-size: 15px;
  margin-bottom: 6px;
  color: #aed7bc;
}
.footer-navigation a {
  color: #aed7bc;
  margin: 0 3px;
  transition: color 0.2s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #6ca36c;
}
.contact-info {
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 3px;
}
.contact-info a {
  color: #6ca36c;
  text-decoration: underline;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 10px;
}

/* COOKIE CONSENT BAR ------------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: linear-gradient(90deg,#20394c 85%, #6ca36c 100%);
  color: #fff;
  box-shadow: 0 -2px 18px rgba(32,57,76,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 18px 26px;
  font-size: 16px;
  font-family: var(--font-body);
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(.81,.04,.6,.98);
}
.cookie-banner.hide {
  transform: translateY(120px);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-banner button {
  padding: 9px 23px;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 0;
}
.cookie-banner .accept {
  background: #6ca36c;
  color: #fff;
  border: none;
  margin-right: 4px;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #428875;
}
.cookie-banner .reject {
  background: #fff;
  color: #20394c;
  border: 1.5px solid #20394c;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #aed7bc;
  color: #20394c;
}
.cookie-banner .settings {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #20394c;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,120vh);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(32,57,76,0.22);
  min-width: 320px;
  max-width: 98vw;
  width: 400px;
  padding: 32px 28px 24px 28px;
  z-index: 10100;
  color: #20394c;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.29s cubic-bezier(.78,.17,.62,.99);
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
}
.cookie-modal h2 {
  font-size: 22px;
  font-family: var(--font-head);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  padding: 13px 0 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #f1f2fa;
}
.cookie-modal label {
  font-size: 16px;
  font-weight: 500;
  color: #20394c;
}
.cookie-modal .toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #e1eaf1;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .toggle.enabled {
  background: #6ca36c;
}
.cookie-modal .toggle-inner {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #fff;
  transition: left 0.18s;
  box-shadow: 0 2px 6px rgba(32,57,76,0.07);
}
.cookie-modal .toggle.enabled .toggle-inner {
  left: 22px;
}
.cookie-modal .cookie-mod-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-mod-actions button {
  padding: 9px 24px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
}
.cookie-modal .cookie-close {
  background: none;
  border: none;
  color: #d9534f;
  position: absolute;
  top: 17px;
  right: 22px;
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal .save {
  background: #20394c;
  color: #fff;
  border: none;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus {
  background: #6ca36c;
  color: #fff;
}
.cookie-modal .cancel {
  background: #e1eaf1;
  color: #20394c;
  border: none;
}


/* MEDIA QUERIES & RESPONSIVENESS ------------------------------------------------------------------ */
@media (max-width: 1020px) {
  .container { max-width: 94vw; }
  .content-wrapper { gap: 24px; }
  .feature-grid, .testimonial-list, .timeline-steps, .process-list, .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .footer-navigation, .contact-info { font-size: 14px; }
}
@media (max-width: 860px) {
  .footer-navigation { text-align: center; }
  .contact-info { text-align: center; }
}
@media (max-width: 768px) {
  .section { padding: 32px 7px; margin-bottom: 36px; }
  .content-wrapper, .cta-banner, .feature-grid, .testimonial-list, .timeline-steps, .process-list, .content-grid, .card-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
  .feature-item, .testimonial-card, .step, .card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .footer .container {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .footer-navigation { margin-bottom: 10px; }
  .contact-info { margin-bottom: 8px; }
  .mobile-menu { padding: 0 10px; }
  .mobile-menu-close { margin-top: 14px; margin-bottom: 12px; font-size: 34px; }
  .mobile-nav a { font-size: 20px; }
  .timeline-steps, .testimonial-list, .feature-grid, .process-list {
    gap: 14px;
  }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .cta-banner { padding: 22px 8px; }
}
@media (max-width: 480px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .section { padding: 23px 2px; }
  .feature-item, .card, .step, .testimonial-card {
    padding-left: 11px; padding-right: 11px;
  }
  .cta-banner { padding: 11px 4px; }
  h1 { font-size: 19px; }
  h2 { font-size: 17px; }
  .btn-primary, .btn-secondary { padding: 8px 14px; font-size: 15px; }
  .mobile-nav a { font-size: 17px; }
}

/* MISC MICROINTERACTIONS -------------------------------------------------------------------------- */
.card, .feature-item, .step, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, transform 0.13s, background 0.19s;
}
.card:focus-within, .feature-item:focus-within, .step:focus-within, .testimonial-card:focus-within, .faq-item:focus-within {
  box-shadow: 0 8px 32px rgba(32,57,76,0.18);
  outline: 1.5px solid #6ca36c;
}

::-webkit-selection { background:#aed7bc;color:#20394c;}
::selection         { background:#aed7bc;color:#20394c;}


/* SPECIAL UTILITY CLASSES -------------------------------------------------------------------------- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

/************************************************************************************
  GOOGLE FONTS
*************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
