/* ==========================================================================   CSS RESET & BASELINE NORMALIZATION ========================================================================== */
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7FAFB;
  color: #152535;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================   FONTS (ensure loaded in <head> with @import or <link>)   Display: Merriweather (serif/geometric), Body: Roboto (sans-serif/modern)   ========================================================================== */
h1, h2, h3, .logo-link {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  color: #12497B;
  margin-bottom: 16px;
  text-transform: none;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #12497B;
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #18A672;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.subheadline {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #12497B;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #152535;
  font-family: 'Roboto', Arial, sans-serif;
}

/* Headings geometric-structured accent */
h1, h2, h3 {
  text-shadow: 0 1px 0 #fff5, 0 2px 8px #e9ecef6a;
}

/* ==========================================================================   LAYOUT STRUCTURE   ========================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 24px 0 rgba(18,73,123,0.06);
}

/* ==========================================================================   MAIN NAVIGATION & HEADER ========================================================================== */
header {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(18, 73, 123, 0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
  position: relative;
}
.main-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #12497B;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
}
.main-nav a:hover, .main-nav a:focus,
.footer-nav a:hover, .footer-nav a:focus {
  background: #E9ECEF;
  color: #18A672;
}
.logo-link {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #12497B;
  letter-spacing: 1px;
}
.cta-btn {
  background: #18A672;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(18, 73, 123, 0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-left: 16px;
  letter-spacing: 0.10em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #0D6C48;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 30px 0 rgba(24,166,114,0.16);
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  padding: 8px 12px;
  font-size: 2rem;
  color: #12497B;
  background: #E9ECEF;
  border-radius: 8px;
  z-index: 120;
  border: none;
}

/* ==========================================================================   MOBILE NAV OVERLAY & ANIMATION   ========================================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #12497B;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.67,.01,.24,1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  gap: 32px;
  box-shadow: -10px 0 44px 0 rgba(18, 73, 123, 0.13);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: transparent;
  align-self: flex-end;
  margin-bottom: 16px;
  z-index: 1010;
  border: none;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #18A672;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #18A672;
  color: #fff;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==========================================================================   HERO SECTIONS   ========================================================================== */
.hero {
  width: 100%;
  background: linear-gradient(96deg, #E9ECEF 88%, #18A67210 100%);
  border-radius: 0 0 36px 36px;
  padding: 56px 0 40px 0;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(18, 73, 123, 0.06);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 600px) {
  .hero {
    padding: 32px 0 26px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
}

/* ==========================================================================   FLEX LAYOUT PATTERNS (MANDATORY)   ========================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 rgba(18, 73, 123, 0.09);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(18, 73, 123, 0.09);
  min-width: 260px;
  max-width: 430px;
  border: 2.5px solid #E9ECEF;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #E9ECEF;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(18, 73, 123, 0.045);
  padding: 26px 20px 20px 20px;
  min-width: 210px;
  max-width: 270px;
  border: 1.5px solid #CCC;
  margin-bottom: 20px;
}
.feature-item img {
  width: 42px;
  height: 42px;
  align-self: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* Cards for team, blog, etc. */
.team-member-cards, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(18,73,123,0.08);
  border: 2px solid #E9ECEF;
  padding: 24px 26px;
  min-width: 220px;
  max-width: 380px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-post-card {
  background: #E9ECEF;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(18,73,123,0.055);
  border: 2px solid #e0e6ee;
  padding: 22px 22px 18px 22px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.blog-post-card h3 {
  color: #12497B;
  margin-bottom: 6px;
}
.blog-post-card a {
  align-self: flex-start;
  background: #12497B;
  color: #fff;
  border-radius: 7px;
  padding: 6px 19px;
  margin-top: 6px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: background 0.16s, color 0.16s;
}
.blog-post-card a:hover, .blog-post-card a:focus {
  background: #18A672;
  color: #fff;
}

/* Call to Action Block */
.cta-block {
  align-items: center;
  background: #12497B;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 30px 0 rgba(18,73,123,0.08);
  padding: 35px 32px;
  gap: 18px;
  text-align: center;
}
.cta-block h2, .cta-block p {
  color: #fff;
}
.cta-block .cta-btn {
  margin: 10px auto 0 auto;
}

/* ==========================================================================   FAQ, UNIQUE LISTS, ETC. ========================================================================== */
.unique-points-list, .competence-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.unique-points-list li, .competence-highlights li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
  background: #E9ECEF;
  border-radius: 7px;
  padding: 8px 14px;
  border-left: 4px solid #18A672;
}
.unique-points-list img,
.competence-highlights img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.engagement-statement {
  background: #F7FAFB;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 1.04rem;
  margin-top: 20px;
}

.services-accordion .service-category {
  background: #E9ECEF;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(18, 73, 123, 0.065);
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  border: 1.5px solid #E9ECEF;
  position: relative;
}
.services-accordion .service-category h3 {
  margin-bottom: 10px;
  color: #12497B;
}
.services-accordion .cta-btn {
  margin-top: 12px;
}

.contact-details-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.contact-details-block > div {
  min-width: 195px;
  background: #E9ECEF;
  border-radius: 8px;
  padding: 16px 16px 13px 18px;
  box-shadow: 0 2px 14px rgba(18, 73, 123, 0.05);
  border: 1.2px solid #D5DEE5;
}
.address-block, .contact-methods, .opening-hours {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Blog category filter */
.blog-category-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.blog-category-filter button {
  font-family: 'Roboto', Arial, sans-serif;
  background: #E9ECEF;
  color: #12497B;
  border-radius: 8px;
  border: 1px solid #18A672;
  padding: 6px 16px;
  font-size: 1rem;
  transition: background 0.17s, color 0.16s;
}
.blog-category-filter button:hover, .blog-category-filter button.active {
  background: #18A672;
  color: #fff;
  outline: none;
}

/* Thank you */
.thankyou-section {
  background: #E9ECEF;
  border-radius: 11px;
  padding: 25px 22px;
  margin-top: 20px;
  box-shadow: 0 2px 14px 0 rgba(18,73,123,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Text Section for policies, etc. */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ==========================================================================   TESTIMONIALS   ========================================================================== */
.testimonial-slider {
  margin-top: 14px;
}
.testimonial-card p {
  color: #152535;
  font-size: 1.06rem;
  font-style: italic;
}
.testimonial-meta {
  display: flex;
  gap: 12px;
  font-size: 0.99rem;
  color: #12497B;
  font-weight: 600;
  align-items: center;
}
.testimonial-card .stars {
  color: #18A672;
  letter-spacing: 0.12em;
  font-size: 1.08rem;
}

/* ==========================================================================   FOOTER ========================================================================== */
footer {
  background: #12497B;
  color: #fff;
  margin-top: 48px;
  width: 100%;
  box-shadow: 0 -4px 20px 0 rgba(18,73,123,0.07);
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px 12px 16px;
}
.footer-main img {
  width: 56px;
  height: 56px;
}
.footer-contact {
  font-size: 0.98rem;
  color: #E9ECEF;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  color: #E9ECEF;
  text-decoration: underline dotted;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 1rem;
  transition: color 0.15s, background 0.15s;
}
.footer-bottom {
  width: 100%;
  background: #0D365B;
  color: #B7CADB;
  font-size: 0.93rem;
  text-align: center;
  padding: 8px 0 7px 0;
  border-radius: 0 0 16px 16px;
}

/* ==========================================================================   COOKIE BANNER & MODAL   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 30000;
  background: #12497B;
  color: #fff;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 -6px 32px 0 rgba(18,73,123,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  transition: transform 0.3s cubic-bezier(.61,.01,.24,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 3 1 300px;
  margin: 0 0 0 0;
  font-size: 1.08rem;
}
.cookie-banner .cookie-buttons {
  flex: 1 1 200px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  margin-right: 2px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.04);
  transition: background 0.18s, color 0.15s;
}
.cookie-btn.accept {
  background: #18A672;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #12497B;
  border: 1px solid #12497B;
}
.cookie-btn.settings {
  background: #0D6C48;
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(1.13);
  outline: 2px solid #18A67233;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 35000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,73,123, 0.44);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.18s linear;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: 0.02; }
  100% { opacity: 1; }
}

.cookie-modal {
  background: #fff;
  color: #12497B;
  border-radius: 16px;
  padding: 34px 30px 22px 30px;
  box-shadow: 0 8px 38px 0 rgba(18,73,123,0.13);
  width: 94vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalPop 0.26s cubic-bezier(.58,.01,.29,1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.89) translateY(34px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.6rem;
  color: #18A672;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #E9ECEF;
  border-radius: 8px;
  padding: 11px 19px;
}
.cookie-category b {
  flex: 1 1 0;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #b7cadb;
  position: relative;
  cursor: pointer;
  margin-left: auto;
  margin-right: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s ease, background 0.17s;
}
.cookie-toggle input:checked ~ span {
  left: 18px;
  background: #18A672;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 19px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .modal-actions .accept {
  background: #18A672;
  color: #fff;
}
.cookie-modal .modal-actions .reject {
  background: #E9ECEF;
  color: #18A672;
}
.cookie-modal .modal-actions .accept:focus, .cookie-modal .modal-actions .accept:hover {
  filter: brightness(1.13);
}

/* ==========================================================================   RESPONSIVE DESIGN (ONLY FLEXBOX)   ========================================================================== */
@media (max-width: 1199px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    padding: 14px 11px 14px 8px;
  }
}
@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
  }
  .footer-contact, .footer-nav {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .cta-block {
    padding-left: 0;
    padding-right: 0;
    gap: 15px;
  }
  .feature-grid, .testimonial-slider, .card-container, .content-grid, .team-member-cards, .blog-post-list, .contact-details-block {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item, .team-member-card, .blog-post-card, .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
  .card, .feature-item, .team-member-card, .blog-post-card, .testimonial-card {
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .hero {
    padding: 32px 0 16px 0;
  }
  .cta-block {
    text-align: left;
    padding: 25px 10px 24px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  .cta-btn { font-size: 1rem; padding: 11px 19px; }
  .cookie-banner { padding: 16px 10px; font-size: 0.99rem; }
  .cookie-modal { padding: 18px 8px 14px 8px; }
}

/* ==========================================================================   MICRO-INTERACTIONS & ACCESSIBILITY   ========================================================================== */
button:focus, a:focus, .cta-btn:focus {
  outline: 2.5px solid #18A67299;
  outline-offset: 2px;
}
a:active, .cta-btn:active {
  color: #0D6C48;
}

.card, .feature-item, .team-member-card, .blog-post-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .feature-item:hover, .team-member-card:hover, .blog-post-card:hover {
  box-shadow: 0 6px 30px 0 rgba(18,73,123,0.13);
  transform: translateY(-2.5px) scale(1.02);
}

.testimonial-card:hover {
  border-color: #18A672;
  box-shadow: 0 10px 30px 0 rgba(18,166,114,0.09);
  transform: scale(1.03);
}

/* Pagination, etc. - minimal if wanted in blog */
.pagination {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}
.pagination a, .pagination .current {
  border-radius: 6px;
  padding: 5px 14px;
  color: #12497B;
  background: #E9ECEF;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.pagination a:hover, .pagination .current {
  background: #18A672;
  color: #fff;
}

/* ==========================================================================   GEOMETRIC STRUCTURED SHAPES DECORATION   ========================================================================== */
.section, .card, .feature-item, .team-member-card, .blog-post-card, .testimonial-card, .cta-block {
  border-radius: 14px;
  border-bottom-right-radius: 24px;
}

/* Subtle angle cut on key accents (simulating geometric motif) */
.section {
  border-top: 5px solid #18A672;
  border-top-left-radius: 22px;
  border-top-right-radius: 6px;
  box-shadow: 0 2px 22px 0 rgba(18,73,123,0.06);
}
.card {
  border-left: 5px solid #12497B;
}
.feature-item {
  border-right: 5px solid #12497B;
}
.cta-block {
  border-left: 5px solid #18A672;
}

/* ==========================================================================   MISC CLASSES   ========================================================================== */
.hero-text, .content-wrapper > ul {
  margin-bottom: 18px;
}
ul li, ol li {
  padding-left: 0.8em;
  margin-bottom: 7px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  background: #18A672;
  width: 7px;
  height: 7px;
  border-radius: 3.5px;
  margin-right: 7px;
  vertical-align: middle;
}
.unique-points-list li:before, .competence-highlights li:before {
  content: '' !important;
  display: none !important;
}

hr {
  border: 0;
  border-top: 1.5px solid #E9ECEF;
  margin: 24px 0;
}

/* ==========================================================================   PRINT STYLES (minimal)   ========================================================================== */
@media print {
  header, .cookie-banner, .mobile-menu, footer {
    display: none !important;
  }
  .section, .container { box-shadow: none !important; }
}
