/* ===================================================
   Blooming Dream Beratung - Geometric Structured Style
   Complete Responsive CSS (Flexbox Only)
   Brand Colors: #27416B (primary), #62918A (secondary), #F0F6F5 (accent)
   Display Font: Montserrat, Body: Roboto
   =================================================== */
/* --- CSS Reset --- */
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,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;  padding: 0;  border: 0;
  font-size: 100%;  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F0F6F5;
}
ol, ul {
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* --- Typography --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #27416B;
  background: #F0F6F5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #27416B;
  margin-bottom: 18px;
}
h1 { font-size: 2.6rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 22px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
.subtitle {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #62918A;
  margin-bottom: 26px;
}
p, li, address, span {
  font-size: 1rem;
  color: #27416B;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: #27416B;
}

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
  .subtitle { font-size: 1rem; }
}

/* --- Main Container Layout --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* --- Header & Navigation --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(39,65,107,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
header img {
  max-height: 44px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #27416B;
  padding: 10px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #62918A;
  border-bottom: 2.5px solid #62918A;
}
.btn-primary {
  background: #27416B;
  color: #fff;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 1.1rem;
  margin-left: 28px;
  letter-spacing: 0.05em;
  transition: background 0.25s, color 0.25s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(39,65,107,0.07);
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  text-align: center;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #62918A;
  color: #fff;
  box-shadow: 0 6px 16px rgba(98,145,138,0.10);
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  line-height: 1;
  background: #62918A;
  color: #fff;
  border-radius: 10px;
  border: none;
  padding: 8px 14px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 7px rgba(39,65,107,0.09);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #27416B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.38,1.29,.61,1);
  box-shadow: -2px 0 18px rgba(39,65,107,0.07);
  padding: 32px 32px 20px 20px;
  opacity: 1;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-close {
  margin-bottom: 22px;
  margin-left: auto;
  font-size: 2.4rem;
  color: #27416B;
  background: #F0F6F5;
  border: none;
  border-radius: 8px;
  padding: 6px 20px 2px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #62918A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #27416B;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.045em;
  padding: 14px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #27416B;
  color: #fff;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .btn-primary { margin-left: 10px; }
}
@media (max-width: 900px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    gap: 6px;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg,#F0F6F5 75%,#62918A10 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #27416B;
}

/* --- Section Spacing & Card Layouts --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(39,65,107,0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(39,65,107,0.08);
  border-radius: 18px;
  padding: 24px;
  transition: box-shadow 0.19s, transform 0.19s;
  min-width: 280px;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(98,145,138,0.15);
  transform: translateY(-4px) scale(1.01);
}
.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;
}
@media (max-width: 800px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Lists, Steps, Features --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 200px;
  background: #F0F6F5;
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 14px rgba(98,145,138,0.06);
  gap: 16px;
}
.feature-grid img {
  width: 36px; height: 36px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #27416B;
  margin-bottom: 6px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 20px; }
  .feature-grid li { min-width: unset; width: 100%; }
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 6px;
  counter-reset: steps;
}
.step-list li {
  flex: 1 1 200px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F0F6F5;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(39,65,107,0.08);
  padding: 16px 14px 16px 14px;
  margin-bottom: 20px;
  position: relative;
}
.step-list img {
  width: 30px; height: 30px;
}

@media (max-width: 800px) {
  .step-list { flex-direction: column; gap: 16px; }
  .step-list li { min-width: unset; width: 100%; }
}

/* --- Testimonials --- */
.testimonials {
  background: #F0F6F5;
  border-radius: 22px;
  padding: 40px 0 30px 0;
  margin-bottom: 60px;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 38px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  background: #fff;
  color: #27416B;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(39,65,107,0.09);
  margin-bottom: 22px;
  min-width: 240px;
  max-width: 560px;
  width: 100%;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card p {
  color: #27416B;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #62918A;
}
@media (min-width: 700px) {
  .testimonials .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .testimonial-card {
    margin: 0 12px 24px 12px;
    min-width: 320px;
    flex: 1 1 320px;
  }
}

/* --- Call to Action Section --- */
.cta-section {
  background: #27416B;
  color: #fff;
  border-radius: 22px;
  padding: 46px 0 46px 0;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(39,65,107,0.09);
}
.cta-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section .btn-primary {
  margin-left: 0;
  margin-top: 18px;
  background: #62918A;
  color: #fff;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #fff;
  color: #27416B;
}

/* --- Lists & Content Sections for Each Page --- */
.usps-list, .usp-list, .user-rights-list, .compliance-measures, .consent-mechanisms, .user-responsibilities, .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 10px 0 18px 0;
}
.benefit-list li, .usps-list li, .usp-list li, .compliance-measures li, .consent-mechanisms li, .user-rights-list li, .user-responsibilities li {
  padding-left: 28px;
  position: relative;
}
.benefit-list li img {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0; top: 3px;
}

.service-list, .workshop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.service-list li, .workshop-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(98,145,138,0.10);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  margin-bottom: 10px;
  border-left: 5px solid #62918A;
}
.service-list h2, .workshop-list h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #27416B;
}
.service-list h2 span, .workshop-list .workshop-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #62918A;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .service-list li, .workshop-list li {
    padding: 14px 6px 12px 11px;
  }
  .service-list h2, .workshop-list h2 {
    font-size: 0.99rem;
    gap: 6px;
  }
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.timeline li {
  flex: 1 1 200px;
  min-width: 180px;
  background: #F0F6F5;
  border-radius: 10px;
  padding: 12px 15px 10px 15px;
  margin-bottom: 20px;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .timeline { flex-direction: column; gap: 9px;}
  .timeline li { min-width: unset; width: 100%; }
}

.text-section {
  font-size: 1rem;
  line-height: 1.6;
  color: #27416B;
  background: none;
}
.short-case-study {
  background: #fff;
  border-left: 7px solid #62918A;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px rgba(98,145,138,0.09);
  margin-bottom: 15px;
}
.project-summaries h2 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.project-summaries p {
  margin-bottom: 13px;
}
.branchenuebersicht ul {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin: 7px 0 8px 0;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .branchenuebersicht ul {
    flex-direction: column;
    gap: 9px;
  }
}

.kundenfeedback {
  background: #F0F6F5;
  border-radius: 10px;
  padding: 12px 15px;
  margin: 12px 0 0 0;
  font-style: italic;
  color: #62918A;
}

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-placeholder {
  background: #e4e8ee;
  color: #888;
  border-radius: 9px;
  padding: 18px 0;
  margin-top: 14px;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* --- Footer --- */
footer {
  width: 100%;
  background: #27416B;
  color: #fff;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  box-shadow: 0 -6px 22px rgba(39,65,107,0.10);
  margin-top: 60px;
  padding: 38px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
}
.footer-branding img {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 10px;
  padding: 2px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.82;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #62918A;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-contact a { color: #fff; text-decoration: underline; opacity: 0.89;}
.footer-contact address{
  color: #fff;
}
.footer-contact a:hover { color: #62918A; opacity: 1;}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; }
}


/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 28px rgba(39,65,107,0.10);
  color: #27416B;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  justify-content: center;
  z-index: 1100;
  padding: 22px 5vw 22px 5vw;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(.38,1.29,.61,1);
}
.cookie-banner.hide {
  transform: translateY(200%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-left: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border: 2px solid #62918A;
  border-radius: 7px;
  background: #F0F6F5;
  color: #27416B;
  cursor: pointer;
  transition: background 0.2s, color 0.19s, border 0.2s;
  margin-right: 6px;
}
.cookie-banner .accept {
  background: #62918A;
  color: #fff;
  border-color: #62918A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #27416B;
  color: #fff;
  border-color: #27416B;
}
.cookie-banner .reject {
  background: #fff;
  color: #27416B;
  border-color: #27416B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F0F6F5;
  color: #62918A;
  border-color: #62918A;
}
.cookie-banner .settings {
  background: transparent;
  color: #62918A;
  border-color: #62918A;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F0F6F5;
  color: #27416B;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;  padding: 18px 9vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 9px; margin-left: 0;
    flex-direction: column;
  }
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,65,107, 0.24);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: .3; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 31px rgba(39,65,107,0.13);
  padding: 40px 30px 30px 30px;
  max-width: 420px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.36s cubic-bezier(.38,1.29,.61,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes modalIn {
  0% { transform: translateY(40px) scale(0.97); opacity: .0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #27416B;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 10px;
  font-size: 2.1rem;
  background: #F0F6F5;
  color: #62918A;
  border: none;
  border-radius: 8px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #62918A; color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #27416B;
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #62918A;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .toggle {
  width: 38px; height: 22px;
  background: #e4e8ee;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal .toggle input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-modal .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #62918A;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .toggle input:checked ~ .slider {
  left: 18px;
  background: #27416B;
}
.cookie-modal .category-disabled {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 19px;
  background: #62918A;
  color: #fff;
  border: none;
  border-radius: 7px;
  transition: background 0.2s, color 0.17s;
  cursor: pointer;
}
.cookie-modal button:focus, .cookie-modal button:hover {
  background: #27416B; color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal { padding: 20px 8px 18px 8px; }
}

/* --- Utility Classes --- */
.hide { display: none !important; }
.visible { display: block !important; }
.m-0 { margin: 0 !important; }
.text-center { text-align: center !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.w-100 { width: 100% !important; }
.gap-20 { gap: 20px !important; }

/* --- Accessibility Focus --- */
a:focus, button:focus, [tabindex]:focus {
  outline: 2px solid #62918A;
  outline-offset: 2px;
  z-index: 500;
}

/* --- Responsive Queries --- */
@media (max-width: 900px) {
  .container { padding: 0 10px; }
}
@media (max-width: 600px) {
  .section, .testimonials, .cta-section { border-radius: 0; }
  .cta-section, .testimonials { padding-left: 0; padding-right: 0;}
}

/* --- Geometric Structured Visual Elements --- */
/* Angular accents and diagonal details using ::before/::after */
.hero .content-wrapper::before {
  content: '';
  display: block;
  width: 80px; height: 8px;
  background: #62918A;
  border-radius: 8px 8px 0 0 / 16px 16px 0 0;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .hero .content-wrapper::before { width: 40px; height: 5px; margin-bottom: 11px;}
}
.feature-grid li::after {
  content: '';
  display: block;
  width: 22px; height: 4px;
  background: #62918A33;
  border-radius: 0 4px 4px 0;
  margin-top: 6px;
  margin-left: 0;
}

/* --- Animations --- */
.btn-primary, .card, .feature-grid li, .service-list li {
  transition: box-shadow 0.2s, transform 0.17s;
}
.btn-primary:active, .card:active, .feature-grid li:active, .service-list li:active {
  transform: scale(0.989);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; background: #F0F6F5; }
::-webkit-scrollbar-thumb { background: #62918A44; border-radius: 12px; }

/* --- End CSS --- */
