/* 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,
main, 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 {
  font-size: 16px;
  background: #FAFAFA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #163467;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 1.25em;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}
a {
  color: #27A5A1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #163467;
  outline: none;
}

/* STRUCTURE ------------------------------ */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  background: #163467;
  color: #FAFAFA;
  padding: 0;
  box-shadow: 0 2px 8px rgba(22,52,103,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FAFAFA;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 0.2s;
}
header nav a:hover, header nav a:active {
  color: #27A5A1;
}
header img {
  height: 44px;
  width: auto;
}

.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  background: #27A5A1;
  color: #FAFAFA!important;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  box-shadow: 0 4px 24px rgba(39,165,161,0.09);
  transition: background 0.2s, transform 0.12s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-left: 24px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #163467;
  color: #27A5A1!important;
  outline: none;
  transform: translateY(-2px) scale(1.045);
}
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #27A5A1;
  background: transparent;
  border: 2px solid #27A5A1;
  border-radius: 8px;
  padding: 10px 28px;
  margin-top: 16px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #27A5A1;
  color: #FAFAFA;
  border-color: #163467;
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE NAVIGATION ---------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  background: #27A5A1;
  color: #FAFAFA;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #163467;
  color: #27A5A1;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 140;
  background: #163467;
  color: #FAFAFA;
  width: 100vw; min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(105vw);
  transition: transform 0.33s cubic-bezier(.71,0,.35,1);
  box-shadow: 0 1px 21px rgba(22,52,103,0.17);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FAFAFA;
  font-size: 2.2rem;
  position: absolute;
  top: 24px; right: 28px;
  cursor: pointer;
  z-index: 145;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #27A5A1;
  outline: none;
}
.mobile-nav {
  margin-top: 80px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #FAFAFA;
  text-transform: uppercase;
  display: block;
  padding: 14px 0;
  width: 100%;
  border-radius: 0 24px 24px 0;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #27A5A1;
  color: #FAFAFA;
  outline: none;
}

/* HERO SECTION --------------------------- */
.hero {
  background: linear-gradient(93deg, #FAFAFA 60%, #27A5A1 120%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 40px 0 32px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #163467;
  line-height: 1.19;
}
.hero p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #163467;
  max-width: 550px;
  margin-bottom: 8px;
}
.hero .cta-primary {
  margin-top: 10px;
  margin-left: 0;
}

/* GEOMETRIC/STRUCTURED CARD LAYOUTS ------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAFAFA;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(22,52,103,0.05);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(22,52,103,0.06);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 370px;
  transition: box-shadow 0.18s, transform 0.11s;
  border: 2.7px solid #E8F1F1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 36px rgba(22,52,103,0.15);
  transform: translateY(-5px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px 20px 24px;
  gap: 14px;
}

.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;
}

/* FEATURES/GRID VARIANTS ----------------- */
.feature-grid, .guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  list-style: none;
  margin: 36px 0 0 0;
}
.feature-grid > li, .feature-grid > div, .guide-list > li {
  background: #FFF;
  border-radius: 14px;
  border: 2px solid #27A5A1;
  box-shadow: 0 1.5px 9px rgba(39,165,161,0.04);
  padding: 24px 22px 24px 22px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border-color 0.14s, transform 0.1s;
  margin-bottom: 20px;
}
.feature-grid > li:hover, .feature-grid > div:hover, .guide-list > li:hover {
  box-shadow: 0 7px 28px rgba(39,165,161,0.16);
  border-color: #163467;
  transform: translateY(-4px) scale(1.018);
}
.feature-grid h3, .guide-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #163467;
  margin: 14px 0 6px 0;
  letter-spacing: -0.01em;
}
.feature-grid p, .guide-list p {
  color: #163467;
  font-size: 1.01rem;
  margin-bottom: 0;
}
.feature-grid img, .guide-list img {
  height: 46px;
  width: 46px;
}

/* SERVICE/PRICING/LISTS --------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  list-style: none;
  justify-content: space-between;
}
.service-list > li {
  background: #FFF;
  border-radius: 14px;
  border: 2px solid #163467;
  box-shadow: 0 2px 14px rgba(22,52,103,0.04);
  padding: 20px 22px 26px 22px;
  flex: 0 1 240px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: border-color 0.16s, box-shadow 0.17s, transform 0.1s;
}
.service-list > li:hover {
  border-color: #27A5A1;
  box-shadow: 0 5px 22px rgba(22,52,103,0.15);
  transform: scale(1.03);
}
.service-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
}
.service-list .service-price {
  margin-top: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: #27A5A1;
  font-weight: 600;
  background: rgba(39,165,161,0.07);
  border-radius: 7.5px;
  padding: 4px 14px;
  align-self: flex-end;
}

/* PRICING TABLE ------------------------ */
.pricing-table {
  border-collapse: collapse;
  margin: 38px 0 0 0;
  width: 100%;
  font-size: 1rem;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(22,52,103,0.07);
}
.pricing-table th, .pricing-table td {
  border: 2px solid #27A5A1;
  padding: 14px 18px;
  text-align: left;
}
.pricing-table th {
  background: #E8F1F1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: #FAFAFA;
}
.pricing-table td:last-child {
  color: #27A5A1;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 22px;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.06rem;
}

.quick-links, .contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 12px;
}
.quick-links img, .contact-details img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 12px;
}

/* TESTIMONIALS/REVIEWS ---------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #F3F8FA;
  min-width: 260px;
  max-width: 420px;
  color: #163467;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(22,52,103,0.06);
  border: 2px solid #27A5A1;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.14s, border-color 0.12s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #163467;
  box-shadow: 0 8px 32px rgba(22,52,103,0.18);
  transform: translateY(-6px) scale(1.03);
}
.testimonial-card p {
  font-size: 1.0rem;
  color: #163467;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #163467;
  display: block;
  margin-top: 0;
}
.testimonial-card span {
  font-size: 1.1rem;
  color: #27A5A1;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* SECTIONS AND STRUCTURE RULES --------------- */
.section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #163467;
  letter-spacing: -0.012em;
  margin-bottom: 20px;
  margin-top: 0;
}
.section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  color: #163467;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  max-width: 790px;
}
.text-section ul {
  margin-top: 8px;
  padding-left: 18px;
}
.text-section ul li {
  color: #163467;
}

.summary-points, .trend-summaries, .recent-tests-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.recent-tests-list > li {
  background: #FFF;
  border: 2px solid #27A5A1;
  border-radius: 12px;
  padding: 19px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 14px rgba(39,165,161,0.04);
}
.recent-tests-list h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* TABLES, POLICY/TEXTUAL PAGES --------- */
.text-section h2, .text-section h3 {
  margin-top: 20px;
}

/* FOOTER ------------------------------- */
footer {
  background: #163467;
  color: #FAFAFA;
  padding: 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 22px 20px 22px 20px;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: #FAFAFA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:active {
  color: #27A5A1;
}
.footer-contact span {
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIES BANNER (BOTTOM FIXED) ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  width: 100vw;
  background: #163467;
  color: #FAFAFA;
  box-shadow: 0 -2px 24px rgba(22,52,103,0.13);
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.4s cubic-bezier(.71,0,.27,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 22px;
  margin-left: 10px;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.13s;
}
.cookie-banner .cookie-accept {
  background: #27A5A1;
  color: #FAFAFA;
}
.cookie-banner .cookie-accept:hover {
  background: #20b0c2;
}
.cookie-banner .cookie-reject {
  background: #FAFAFA;
  color: #163467;
  border: 2px solid #27A5A1;
}
.cookie-banner .cookie-reject:hover {
  background: #27A5A1;
  color: #FAFAFA;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #27A5A1;
  border: 2px solid #27A5A1;
}
.cookie-banner .cookie-settings:hover {
  background: #27A5A1;
  color: #FAFAFA;
}

/* COOKIE MODAL (PREFERENCES) ------------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 11000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,30,34,0.36);
  display: none;
}
.cookie-modal-backdrop.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50vw; top: 51vh;
  z-index: 11010;
  transform: translate(-50%, -50%) scale(1);
  background: #FFF;
  color: #163467;
  border-radius: 17px;
  box-shadow: 0 8px 56px rgba(22,52,103,0.29);
  min-width: 94vw;
  max-width: 440px;
  min-height: 220px;
  padding: 34px 26px 24px 26px;
  display: none;
  flex-direction: column;
  gap: 19px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modalSlideDown 0.39s cubic-bezier(.37,1.43,.34,1) 1;
}
.cookie-modal.open {
  display: flex;
}
@keyframes modalSlideDown {
  0% { transform: translate(-50%, -90%) scale(0.97); opacity: 0.65; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  color: #163467;
  margin-bottom: 8px;
}
.cookie-modal ul {
  margin: 8px 0 20px 0;
  padding: 0;
  list-style: none;
}
.cookie-modal li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: #163467;
  cursor: pointer;
  user-select: none;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #27A5A1;
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #27A5A1;
  width: 19px; height: 19px;
  border-radius: 4px;
  margin-right: 5px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-save {
  background: #27A5A1;
  color: #FAFAFA;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.1s;
}
.cookie-modal .cookie-save:hover {
  background: #163467;
  color: #27A5A1;
}
.cookie-modal .cookie-cancel {
  background: transparent;
  color: #27A5A1;
  border: 2px solid #27A5A1;
  border-radius: 8px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}
.cookie-modal .cookie-cancel:hover {
  background: #27A5A1;
  color: #FAFAFA;
}

/* TYPOGRAPHY & DETAIL ------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.23rem; }
p, li { font-size: 1.03rem; color: #163467; }

strong {
  font-weight: bold;
}

/* GENERAL FLEXBOX SPACING PATTERNS ------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* REMOVE ABSOLUTE, GRID, COLUMNS FOR LAYOUT */
/* No display:grid or column-* allowed */

/* MEDIA QUERIES - RESPONSIVE DESIGN ------- */
@media (max-width: 992px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 20px;
    padding: 8px 12px;
  }
  .footer-contact span { font-size: 0.98rem; }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 8px 6px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
    font-size: 1rem;
    padding: 10px 20px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .hero {
    padding: 28px 5vw;
  }
  .feature-grid, .guide-list, .service-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid > li, .feature-grid > div, .guide-list > li, .service-list > li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .cookie-modal {
    min-width: 94vw;
    max-width: 98vw;
    padding: 20px 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 10px;
  }
  footer nav {
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
}

/* ACCESSIBLE FOCUS STATES ----------------- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px dashed #27A5A1;
  outline-offset: 2.7px;
}

/* MICRO-INTERACTIONS --------------------- */
.card, .feature-grid > li, .service-list > li, .testimonial-card, .cta-primary, .cta-secondary {
  transition: box-shadow 0.14s, border-color 0.14s, background 0.14s, color 0.12s, transform 0.12s;
}

/* GEOMETRIC SHAPE DECORATIONS ------------- */
.section::before, .hero::before {
  content: '';
  display: block;
  position: absolute;
  opacity: 0.085;
  background: #27A5A1;
  width: 120px; height: 120px;
  left: -34px; top: -34px;
  border-radius: 26px 58px 82px 36px;
  z-index: 0;
  pointer-events: none;
}
.section::after, .hero::after {
  content: '';
  display: block;
  position: absolute;
  opacity: 0.085;
  background: #163467;
  width: 74px; height: 74px;
  right: -24px; bottom: -24px;
  border-radius: 23px 33px 62px 25px;
  z-index: 0;
  pointer-events: none;
}
.hero::before, .hero::after {
  width: 65px; height: 65px;
  opacity: 0.11;
}

/* Hide geometric background on mobile */
@media (max-width: 640px) {
  .section::before, .section::after, .hero::before, .hero::after {
    display: none;
  }
}

/* FONT-FACE IMPORTS (FOR HOSTING) --------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Roboto:wght@400;500;700&display=swap');

/* --- END OF CSS --- */
