/* 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, main, 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;
}
.content-wrapper img {
  width: 50px;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  color: #222;
  background: #F4F6FB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1D7BA4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #153452;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 20px;
  padding-left: 1.2em;
}
li {
  margin-bottom: 8px;
  list-style-position: inside;
}

/* BRAND FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #153452;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, .privacy-note, label, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}

/* CREATIVE-ARTISTIC ACCENTS */
:root {
  --color-primary: #153452;
  --color-secondary: #1D7BA4;
  --color-accent: #F4F6FB;
  --color-hero-gradient: #FAF7F5;
  --color-feature-bg: #ECF7FF;
  --color-success: #35BE8C;
  --color-warning: #E8B245;
  --color-error: #E86345;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* MAIN CONTAINERS & ARTISTIC LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 6px 36px 0 rgba(29,123,164,0.08);
  position: relative;
}
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}
.section:nth-child(even) {
  background: var(--color-feature-bg);
}

/* HEADER & MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(21,52,82,0.05);
  padding: 0;
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  padding: 16px 20px;
}
.main-nav img {
  height: 38px;
  margin-right: 16px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav .cta-primary {
  margin-left: auto;
  margin-right: 0;
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px 30px 10px 30px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 5px rgba(21,52,82,0.05);
  box-shadow: 0 1.5px 12px 0 rgba(21,52,82,0.06);
  border: none;
  outline: none;
  transition: background 0.18s, box-shadow .21s;
}
.main-nav .cta-primary:hover {
  background: var(--color-primary);
  box-shadow: 0 5px 16px 0 rgba(21,52,82,0.04);
  color: #fff;
}
.main-nav a:not(.cta-primary):hover {
  color: var(--color-secondary);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 16px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.8rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .18s, box-shadow .21s;
  z-index: 101;
  box-shadow: 0 2px 16px 0 rgba(29,123,164,0.1);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  outline: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,52,82, 0.96);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 40px 0 rgba(21,52,82,0.21);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(0.77,0,0.175,1), opacity .27s;
  z-index: 2000;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 22px 30px 0 0;
  cursor: pointer;
  transition: color .21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 60px 36px 0 36px;
  width: 80vw;
  max-width: 360px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 14px 0;
  transition: color .18s, text-shadow .18s;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-warning);
  text-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

/* HERO & CALL TO ACTIONS */
.cta-primary, .cta-secondary, .cta-tertiary {
  font-family: var(--font-display);
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 30px 30px 10px 30px;
  letter-spacing: 0.07em;
  box-shadow: 0 3px 16px 0 rgba(29,123,164,0.09);
  transition: background 0.16s, color 0.16s, box-shadow .2s, transform .16s;
}
.cta-primary {
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 36px;
  font-size: 1.18rem;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: 10px 30px;
  font-size: 1.08rem;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: #fff;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cta-tertiary {
  background: none;
  border: none;
  color: var(--color-primary);
  padding: 0;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* FLEXBOX LAYOUTS Mandatory Classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 230px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(21,52,82,0.08);
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(29,123,164,0.17);
  transform: translateY(-2px) scale(1.02);
}
.content-grid,
.feature-grid,
.services-list,
.service-cards,
.project-summaries,
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid,
  .feature-grid,
  .services-list,
  .service-cards,
  .project-summaries,
  .post-list {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-grid > li,
.services-list > li,
.service-cards > div,
.project-summaries > article,
.post-list > article,
.value-list > li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(29,123,164, 0.06);
  padding: 26px 22px;
  margin-bottom: 0;
  flex: 1 1 250px;
  min-width: 220px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .16s, transform .13s;
}
.feature-grid > li:hover, .services-list > li:hover, .service-cards > div:hover, .project-summaries > article:hover, .post-list > article:hover, .value-list > li:hover {
  box-shadow: 0 5px 24px rgba(29,123,164,0.14);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img, .services-list img, .service-cards img, .value-list img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(29,123,164,0.10));
}

.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;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(29,123,164,0.06);
  flex-direction: column;
  position: relative;
  min-width: 260px;
  max-width: 440px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.5;
  background: #F4F6FB;
  border-left: 4px solid #1D7BA4;
  padding: 12px 22px 12px 18px;
  border-radius: 8px 24px 14px 8px;
}
.testimonial-card .client-profile {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #153452;
  margin-bottom: 6px;
}
.star-rating {
  color: #E8B245;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Visual Card/Section Layouts (Spacing/Alignment) */
.key-stats,
.value-list,
.benefits-list,
.newsletter-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
}
.key-stats li, .value-list li, .benefits-list li, .newsletter-benefits ul li {
  flex: 1 1 180px;
  background: #ECF7FF;
  color: #153452;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 16px;
  padding: 15px 10px;
  font-weight: 600;
  min-width: 120px;
  box-shadow: 0 1px 8px rgba(29,123,164,.04);
}
@media (max-width: 700px) {
  .key-stats, .value-list, .benefits-list, .newsletter-benefits ul {
    flex-direction: column;
    gap: 12px;
  }
}
.workflow-steps, .steps-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  padding-left: 0;
}
.workflow-steps > li, .steps-overview > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(29,123,164, 0.08);
  padding: 18px 14px 18px 18px;
  min-width: 220px;
  flex: 1 1 180px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 0;
}
.workflow-steps img, .steps-overview img {
  width: 28px;
  margin-right: 12px;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .workflow-steps, .steps-overview {
    flex-direction: column;
    gap: 14px;
  }
}

/* Comparison Table Styling (Artistic) */
.comparison-table {
  border-collapse: separate;
  width: 100%;
  margin-bottom: 24px;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(29,123,164,.07);
  table-layout: fixed;
}
.comparison-table th, .comparison-table td {
  padding: 16px 8px;
  text-align: left;
  border-bottom: 1px solid #ECF7FF;
}
.comparison-table th {
  background: #ECF7FF;
  color: #153452;
  font-family: var(--font-display);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Newsletter / Form Styles */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px 22px;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(29,123,164,0.07);
  width: 100%;
  max-width: 440px;
}
.newsletter-signup input[type="email"] {
  border: 2px solid #ECF7FF;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #F4F6FB;
  transition: border 0.15s;
}
.newsletter-signup input[type="email"]:focus {
  border: 2px solid var(--color-secondary);
  outline: none;
}
.newsletter-signup button {
  align-self: flex-start;
}
.newsletter-signup .privacy-note {
  font-size: 0.92rem;
  color: #888;
}

/* CONTACT DETAILS SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.5;
}
.privacy-note {
  background: #ECF7FF;
  color: #1D7BA4;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.98rem;
}

/* CARD LAYOUTS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px 18px 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ICONS */
.service-cards img, .project-summaries img {
  width: 48px;
}
.impact-metrics {
  background: #1D7BA4;
  color: #fff;
  border-radius: 12px 20px 6px 18px;
  padding: 6px 16px;
  font-size: 1rem;
  margin-top: 9px;
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ECF7FF;
  padding: 32px 0 18px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 18px rgba(21,52,82,0.04);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1D7BA4;
  font-family: var(--font-display);
  font-weight: 700;
}
.footer-nav a {
  color: #1D7BA4;
  transition: color .18s;
}
.footer-nav a:hover {
  color: #E8B245;
}
.footer-meta {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin-top: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
  .section {
    padding: 16px 2px;
    margin-bottom: 38px;
  }
}
@media (max-width: 500px) {
  .newsletter-signup {
    padding: 10px 5px;
    max-width: 100%;
  }
  .section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* CATEGORIES FILTER BAR (insights) */
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1.07rem;
  color: #1D7BA4;
  font-family: var(--font-display);
  font-weight: bold;
}
.categories-filter a {
  color: #1D7BA4;
  padding: 3px 10px;
  border-radius: 7px;
  transition: background .13s, color .13s;
}
.categories-filter a:hover,
.categories-filter a:focus {
  background: #ECF7FF;
  color: #153452;
}

/* Transitions & Microinteractions */
input, button, .card, .cta-primary, .cta-secondary, .mobile-menu {
  transition: box-shadow .19s, background .18s, color .17s, transform .18s;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #153452;
  color: #F4F6FB;
  font-family: var(--font-body);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  box-shadow: 0 -4px 32px rgba(21,52,82,0.17);
  z-index: 9000;
  gap: 28px;
  font-size: 1rem;
}
.cookie-banner p {
  margin: 0 24px 0 0;
  font-size: 1rem;
  color: #F4F6FB;
  flex: 1 1 auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 18px 30px 8px 10px;
  cursor: pointer;
  font-weight: 700;
  transition: background .17s, color .17s;
}
.cookie-banner .accept {
  background: #35be8c;
  color: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(53,190,140,0.11);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1D7BA4;
}
.cookie-banner .reject {
  background: #E86345;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #D2482A;
}
.cookie-banner .settings {
  background: none;
  border: 2px solid #F4F6FB;
  color: #F4F6FB;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F4F6FB;
  color: #153452;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    gap: 14px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    gap: 11px;
    flex-wrap: wrap;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 90vw;
  max-width: 410px;
  background: #fff;
  color: #153452;
  border-radius: 20px;
  box-shadow: 0 8px 80px 0 rgba(21,52,82,0.23);
  z-index: 10000;
  transform: translate(-50%,-50%) scale(1.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  padding: 37px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1.0);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ECF7FF;
  border-radius: 12px;
  padding: 11px 16px;
  margin-bottom: 10px;
  font-size: 0.98rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.cookie-modal .cookie-category .category-title {
  font-weight: bold;
  font-family: var(--font-display);
  margin-right: 8px;
}
.cookie-modal .toggle {
  width: 46px;
  height: 26px;
  border-radius: 14px;
  background: #F4F6FB;
  position: relative;
  cursor: pointer;
  transition: background .16s;
  border: 2px solid #1D7BA4;
  margin-left: 14px;
  flex-shrink: 0;
  outline: none;
  appearance: none;
}
.cookie-modal .toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #1D7BA4;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 1px;
  transition: left .17s, background .16s;
}
.cookie-modal .toggle:checked {
  background: #1D7BA4;
}
.cookie-modal .toggle:checked::after {
  left: 23px;
  background: #35BE8C;
}
.cookie-modal .toggle[disabled] {
  opacity: 0.45;
  cursor: default;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal button {
  border: none;
  border-radius: 15px 25px 8px 10px;
  background: #1D7BA4;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 9px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal button.cancel {
  background: #E86345;
}
.cookie-modal button:focus {
  outline: 2px solid #FAF7F5;
}

@media (max-width:500px) {
  .cookie-modal {
    padding: 15px 6px 18px 6px;
    width: 97vw;
    max-width: 100vw;
  }
}

/* MICRO-ANIMATIONS */
.card, .feature-grid > li, .services-list > li, .service-cards > div,
.project-summaries > article, .testimonial-card, .post-list > article, .value-list > li {
  transition: box-shadow .15s, transform .13s;
}
.card:hover, .feature-grid > li:hover, .services-list > li:hover, .service-cards > div:hover, .project-summaries > article:hover, .testimonial-card:hover, .post-list > article:hover, .value-list > li:hover {
  box-shadow: 0 6px 32px rgba(21,123,164,0.14);
  transform: translateY(-4px) scale(1.016);
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* ACCESSIBILITY STATES */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #1D7BA4;
  outline-offset: 1.5px;
}
input:focus {
  outline: 2px solid var(--color-secondary);
  border-color: var(--color-secondary);
}

/* MISC */
.service-price {
  font-size: 1.08rem;
  color: #35BE8C;
  font-weight: 700;
  margin-top: 4px;
  font-family: var(--font-display);
}

::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
input::placeholder { color: #bbb; }

/* Hide elements used for JS behaviour only */
.mobile-menu[aria-hidden="true"], .cookie-modal[aria-hidden="true"] {
  display: none !important;
}
