:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2c4964;
  --accent-color: #1977cc;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #2c4964;
  --nav-hover-color: #1977cc;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2c4964;
  --nav-dropdown-hover-color: #1977cc;

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.topbar {
  background: linear-gradient(90deg, #0d6efd, #0b5ed7);
  color: #fff;
  font-size: 14px;
  height: 40px;
  display: flex;
  align-items: center;
}

.topbar a, .topbar span, .topbar i { color: #fff; }
.topbar .contact-info { gap: 16px; }
.topbar .contact-info i { font-style: normal; opacity: 0.95; }
.topbar .contact-info i a:hover { text-decoration: underline; }

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .header .branding { min-height: 50px; padding: 6px 0; }
  .header .logo h1 { font-size: 22px; }
  .topbar { font-size: 13px; }
}

@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu a {
    color: var(--nav-color);
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: 0.3s;
  }
  .navmenu a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    transition: 0.3s;
    visibility: hidden;
  }
  .navmenu a:hover:before,
  .navmenu .active:before { width: 100%; visibility: visible; }
  .navmenu a:hover, .navmenu .active { color: var(--nav-hover-color); }

  .navmenu a i { display: none !important; }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
  }
  .navmenu { padding: 0; z-index: 9997; }

  .navmenu > ul {
    display: none;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    width: calc(100% - 48px);
    max-width: 420px;
    padding: 14px 0;
    margin: 0;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(25, 119, 204, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .navmenu .menu-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: 0.25s ease;
  }

  .navmenu a:hover .menu-icon,
  .navmenu .active .menu-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
  }

  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
  }
  .mobile-nav-active .navmenu > ul { display: block; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }
}

section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 1px;
  left: 0; right: 0;
  bottom: 1px;
  margin: auto;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  left: 0; right: 0;
  bottom: 0;
  margin: auto;
  background: var(--accent-color);
}

.hero {
  width: 100%;
  min-height: calc(100vh - 112px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .welcome {
  background: rgba(255, 255, 255, 0.35);
  padding: 18px 28px;
  border-radius: 18px;
  margin: 0 auto 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  max-width: 900px;
  text-align: center;
}

.hero .welcome h2 {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 700;
  animation: slideFadeDown 1s ease forwards;
}

@keyframes slideFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .welcome p { margin: 0; font-size: 24px; }

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 10px;
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
}

.hero .content .icon-box i { font-size: 40px; color: var(--accent-color); }

@media (max-width: 767px) {
  .hero { padding: 80px 0 40px; }
  .hero .container { min-height: calc(100vh - 140px); }
  .hero .welcome { max-width: 95%; padding: 14px 18px; }
  .hero .welcome h2 { font-size: 30px; }
  .hero .welcome p { font-size: 16px; }
  .hero .content .icon-box { padding: 24px 18px; }
}

.about .content h3 { font-size: 2rem; font-weight: 700; }
.about .content ul { list-style: none; padding: 0; }
.about .content ul li { display: flex; align-items: flex-start; margin-top: 40px; }
.about .content ul i { font-size: 48px; color: var(--accent-color); margin-right: 20px; }
.about .content ul h5 { font-size: 18px; font-weight: 700; }
.about .content ul p { font-size: 15px; }

.stats i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px; height: 54px;
  font-size: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px;
  width: 100%;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.35s ease;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
}

.stats i:hover { transform: scale(1.12) translateY(-4px); }
.stats .stats-item:hover { transform: translateY(-6px); }

.accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
  background-color: #0d6efd;
  color: #fff;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.service-card img {
  border-radius: 10px;
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-card:hover img { transform: scale(1.05); }

.service-card h5 { margin-top: 15px; font-weight: 600; font-size: 1rem; }
.service-card p { font-size: 0.85rem; margin-bottom: 0.5rem; }

.cta-booking {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

.cta-booking a {
  background: #198754;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-booking a:hover {
  background: #146c43;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #fff;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img { transition: 0.4s; }
.gallery .gallery-item:hover img { transform: scale(1.1); }

@media (max-width: 767px) {
  .gallery .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .gallery .gallery-item { border: none; }
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px; height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: 0.3s;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .info-item i {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  #contact iframe { height: 200px; }
}

.btn-success { transition: all 0.3s ease; }
.btn-success:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(25,135,84,0.35);
}

.footer {
  background: #0b1d33;
  color: #cfd8e3;
  font-size: 14px;
  border-top: 1px solid rgba(25,119,204,0.2);
}

.footer a, .footer i { color: #cfd8e3; }
.footer i:hover { color: #0d6efd; }

.footer .footer-top { padding-top: 50px; }
.footer .footer-about .logo span {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 16px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #0d6efd;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
}

.scroll-top.active { visibility: visible; opacity: 1; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fab-wrapper {
  position: fixed;
  bottom: 25px;
  right: 22px;
  z-index: 999999;
}

.fab-main {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
  cursor: pointer;
  animation: pulse 2s infinite;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.fab-main:hover { transform: scale(1.08); }

.fab-options {
  position: absolute;
  bottom: 72px;
  right: 7px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  transform: translateY(6px);
}

.fab-options.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-option {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  margin-bottom: 8px;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.fab-option:hover {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(13,110,253,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

@media (max-width: 768px) {
  .fab-main { height: 54px; width: 54px; font-size: 24px; }
  .fab-option { height: 42px; width: 42px; font-size: 20px; }
  .fab-options { bottom: 65px; }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

.header .topbar .contact-info {
  display: flex !important;
  align-items: center !important;
  gap: 16px;
  flex-wrap: nowrap !important;
  white-space: nowrap;
}

.header .topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.header .topbar .topbar-item i {
  display: inline-block;
  font-style: normal;
  color: #fff;
}

.header .topbar .topbar-item a {
  color: #fff;
  text-decoration: none;
}

.header .topbar .topbar-item a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .header .topbar .contact-info {
    gap: 10px;
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header .topbar .contact-info::-webkit-scrollbar {
    height: 0;
  }
}

.hero .content.row {
  --bs-gutter-x: 2.2rem;
  --bs-gutter-y: 2.0rem;
}

.hero .content .col-lg-4.d-flex,
.hero .content .col-lg-8.d-flex {
  align-items: flex-start !important;
}

.hero .content .why-box,
.hero .content .icon-box {
  height: auto !important;
}

.hero .content .why-box {
  padding: 32px;
  border-radius: 14px;
}

.hero .content .icon-box {
  padding: 34px 26px;
  border-radius: 14px;
}

@media (max-width: 991px) {
  .hero .content.row {
    --bs-gutter-x: 1.2rem;
    --bs-gutter-y: 1.2rem;
  }

  .hero .content .why-box {
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .hero .content {
    margin-top: 14px !important;
  }

  .hero .content .icon-box {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    padding: 22px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(4px);
  }

  .hero .content .icon-box i {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .hero .content .icon-box h4 {
    font-size: 18px;
    margin: 6px 0 8px 0;
    line-height: 1.2;
  }

  .hero .content .icon-box p {
    font-size: 13.5px;
    line-height: 1.35;
    margin: 0;
  }

  .hero .content .row.gy-4 {
    --bs-gutter-y: 1rem;
  }
}

#comment { resize: vertical; }

#termin { max-width: 980px; }

#termin h2 { font-weight: 700; }

#termin .form-label {
  font-weight: 600;
  margin-bottom: 6px;
}

#termin .form-control {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#termin .form-control:focus {
  border-color: rgba(13, 110, 253, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

#termin textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

#termin .btn.btn-success {
  border-radius: 14px;
  padding: 12px 26px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(25, 135, 84, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#termin .btn.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(25, 135, 84, 0.22);
}

#termin .btn.btn-success:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(25, 135, 84, 0.18);
}

@media (max-width: 576px) {
  #termin {
    padding-left: 14px;
    padding-right: 14px;
  }

  #termin .row.g-3 {
    row-gap: 14px;
  }

  #termin .btn.btn-success {
    width: 100%;
  }
}

#termin form#preisForm {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.payment-methods{
  margin-top: 10px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
}

.payment-title{
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 14px;
}

.payment-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: #2c4964;
  background: #f6f9ff;
  border: 1px solid rgba(13,110,253,0.18);
  user-select: none;
}

.pay-badge i{
  font-size: 16px;
  line-height: 1;
  color: #0d6efd;
}

.payment-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(44,73,100,0.75);
}

@media (max-width: 576px){
  .payment-methods{ padding: 12px; }
  .payment-badges{ gap: 8px; }
  .pay-badge{ font-size: 12.5px; padding: 7px 10px; }
}

#termin .form-check {
  background: rgba(13, 110, 253, 0.06);
  border: 1px solid rgba(13, 110, 253, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
}

#termin .form-check-label {
  font-size: 14px;
  line-height: 1.4;
}

#termin .form-check-label a {
  font-weight: 700;
  text-decoration: underline;
}

#termin .agb-check .form-check-label {
  cursor: pointer;
  user-select: none;
}

#termin #openAgb {
  font-weight: 800;
  text-decoration: underline;
}

.agb-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999999;
}

.agb-modal.is-open { display: flex; }

.agb-modal__dialog {
  width: 100%;
  max-width: 760px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.25);
  animation: agbPop 0.18s ease-out;
}

@keyframes agbPop {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.agb-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.agb-modal__header h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
}

.agb-modal__close {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
}

.agb-modal__body {
  padding: 14px 16px;
  max-height: 60vh;
  overflow: auto;
  font-size: 14px;
  line-height: 1.5;
}

.agb-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.payment-methods {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.payment-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13,110,253,0.18);
  background: rgba(13,110,253,0.06);
  font-weight: 700;
  font-size: 14px;
}

.payment-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,0.65);
}

.agb-preinfo {
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
}
.agb-preinfo a { font-weight: 800; text-decoration: underline; }

#termin .btn-success { margin-bottom: 28px; }
.payment-methods { margin-top: 12px; }

.payment-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 576px) {
  #gallery .row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
  }

  #gallery a.glightbox {
    display: block;
    width: 100%;
  }

  #gallery a.glightbox img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 14px;
  }
}

:root{
  --sp-gap-1: 8px;
  --sp-gap-2: 12px;
  --sp-gap-3: 16px;
  --sp-gap-4: 24px;
  --sp-gap-5: 32px;

  --sp-radius: 16px;
  --sp-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-24 { font-size: 24px; line-height: 1; }
.icon-20 { font-size: 20px; line-height: 1; }
.icon-18 { font-size: 18px; line-height: 1; }

.navmenu .menu-icon{
  width: 34px;
  height: 34px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contact .info-item i{
  width: 46px;
  height: 46px;
  font-size: 20px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer .social-links{ gap: 14px; }
.footer .social-links a{
  width: 44px;
  height: 44px;
  font-size: 18px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.payment-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}
.pay-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(13,110,253,0.18);
  background: rgba(13,110,253,0.06);
}
.pay-badge i{
  font-size: 18px;
  line-height: 1;
}

.payment-note{
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,0.65);
}

.service-card{ border-radius: var(--sp-radius); box-shadow: var(--sp-shadow); }
.service-card h5{ margin-top: 14px; }
.service-card p{ line-height: 1.35; }

.hero .content .why-box,
.hero .content .icon-box{ border-radius: var(--sp-radius); }

.footer .social-links{ gap: 18px; }

#departments .accordion-button {
  background: linear-gradient(135deg, rgba(13,110,253,0.10), rgba(13,110,253,0.03));
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 20px;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

#departments .accordion-button::after { transform: scale(1.15); }

#departments .accordion-button:hover {
  background: linear-gradient(135deg, rgba(13,110,253,0.18), rgba(13,110,253,0.06));
  transform: translateY(-1px);
}

#departments .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(13,110,253,0.28), rgba(13,110,253,0.10));
  color: #0b5ed7;
  box-shadow: 0 10px 26px rgba(13,110,253,0.25);
}

#departments .accordion-item { border: 0; background: transparent; }
#departments .accordion-item + .accordion-item { margin-top: 6px; }

#departments .accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
}

#departments .service-card h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #222;
}

#departments .service-card p,
#departments .accordion-body p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

#departments .cta-booking a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

#departments .accordion-button {
  position: relative;
  padding-bottom: 12px;
}

#departments .accordion-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 40px;
  height: 2px;
  background-color: #c9c9c9;
  border-radius: 2px;
  transition: width 0.3s ease;
}

#departments .accordion-button:hover::after { width: 60px; }

#departments .service-card h5 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

#departments .service-card h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background-color: #d3d3d3;
  border-radius: 2px;
}

.footer-about .sitename { margin-bottom: 6px; }
.footer .social-links { margin-top: 6px !important; }

#departments .section-title p { margin-bottom: 12px; }
#departments .accordion-item { margin-bottom: 10px; }

section, .section {
  padding: 40px 0 !important;
  scroll-margin-top: 70px;
}

.section-title { padding-bottom: 26px !important; }
.section-title h2 {
  margin-bottom: 10px !important;
  padding-bottom: 12px !important;
  font-size: 30px;
  font-weight: 700;
}
.section-title p {
  margin-bottom: 8px !important;
  font-size: 15px;
  opacity: 0.9;
}

.section-title h2:before { width: 140px; opacity: .5; }
.section-title h2:after  { width: 46px; height: 2px; }

p { line-height: 1.55; }
.about .content p,
.about .content ul p,
.service-card p,
.contact .info-item p {
  font-size: 15px;
  line-height: 1.55;
}

.accordion-item { margin-bottom: 10px !important; }
.accordion-button { padding: 12px 16px; }
.accordion-collapse .row.p-4 { padding: 16px !important; }
.cta-booking { margin-top: 16px !important; }

.service-card {
  padding: 14px !important;
  border-radius: 12px;
}
.service-card h5 {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
}
.service-card img { max-height: 140px; }

#contact .section-title p { margin-bottom: 6px !important; }
#contact .mb-5 { margin-bottom: 14px !important; }
#contact iframe { height: 240px; }

#gallery .section-title p { margin-bottom: 8px !important; }
#gallery .container { margin-top: 0 !important; }
#gallery .row.g-2 { --bs-gutter-x: .5rem; --bs-gutter-y: .5rem; }

#termin h2 { margin-bottom: 14px !important; }
#termin form#preisForm { padding: 16px !important; }
#termin .row.g-3 { row-gap: 12px !important; }
#termin .form-control { padding: 10px 12px; }
#termin .btn.btn-success { margin-top: 6px; }

.payment-badges{
  margin-top: 14px;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.payment-note{
  margin-top: 4px;
  text-align: center;
  font-size: 13px;
  opacity: .85;
}

.footer .footer-top { padding-top: 28px !important; }
.footer .social-links { margin-top: 10px !important; gap: 10px; }
.footer .copyright { padding: 16px 0 !important; }

@media (max-width: 768px){
  section, .section { padding: 32px 0 !important; }
  .section-title { padding-bottom: 18px !important; }
  .section-title h2 { font-size: 26px; }
  #contact iframe { height: 210px; }
  #termin form#preisForm { padding: 14px !important; }
}

.about-float { animation: aboutFloat 4.5s ease-in-out infinite; }

@keyframes aboutFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.agb-modal-dialog{
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  width: min(920px, 92vw);
}

.agb-scroll{ flex: 1; overflow: auto; }

.agb-modal-footer{ position: relative; z-index: 2; }

@media (max-width: 768px) {
  #contact .info-item{
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    gap: 12px !important;
  }

  #contact .info-item i{
    margin: 0 !important;
    flex: 0 0 auto;
  }

  #contact .info-item h3,
  #contact .info-item p{
    margin: 0 !important;
  }
}

.agb-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  pointer-events: none;
}

.agb-modal.is-open{
  display: flex;
  pointer-events: auto;
}

.agb-modal-dialog{
  position: relative;
  z-index: 100000;
  pointer-events: auto;
}

@media (max-width: 767px){
  #about .row.gy-4{ --bs-gutter-y: 0 rem; }
  #about .col-lg-6.position-relative{ text-align: center; }
  #about img.img-fluid{
    display: block;
    margin: 0 auto;
    max-width: 320px;
    width: 85%;
  }
  #about.about.section{ padding-top: 24px !important; }
}

:root{
  --sp-font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --sp-font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --sp-text: #444;
  --sp-heading: #2c4964;

  --sp-fs-body: 15px;
  --sp-lh-body: 1.55;

  --sp-fs-h1: 44px;
  --sp-fs-h2: 32px;
  --sp-fs-h3: 24px;
  --sp-fs-h4: 18px;
  --sp-fs-h5: 16px;

  --sp-fw-heading: 700;
}

body{
  font-family: var(--sp-font-body) !important;
  font-size: var(--sp-fs-body);
  line-height: var(--sp-lh-body);
  color: var(--sp-text);
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--sp-font-heading) !important;
  color: var(--sp-heading) !important;
  letter-spacing: 0.2px;
}

h1{ font-size: var(--sp-fs-h1); font-weight: 800; line-height: 1.15; }
h2{ font-size: var(--sp-fs-h2); font-weight: var(--sp-fw-heading); line-height: 1.2; }
h3{ font-size: var(--sp-fs-h3); font-weight: var(--sp-fw-heading); line-height: 1.25; }
h4{ font-size: var(--sp-fs-h4); font-weight: 700; line-height: 1.25; }
h5{ font-size: var(--sp-fs-h5); font-weight: 700; line-height: 1.25; }

p, li, label, .form-label, .form-control, textarea, input, select{
  font-family: var(--sp-font-body) !important;
  font-size: var(--sp-fs-body) !important;
  line-height: var(--sp-lh-body) !important;
}

.hero .welcome h2{
  font-size: 46px !important;
  font-weight: 800 !important;
}
.hero .welcome p{
  font-size: 18px !important;
  font-weight: 500;
}
.hero .why-box h3{
  font-size: 22px !important;
  font-weight: 800 !important;
}
.hero .icon-box h4{
  font-size: 18px !important;
  font-weight: 800 !important;
}
.hero .icon-box p{
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.section-title h2{
  font-size: var(--sp-fs-h2) !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}
.section-title p{
  font-size: 15px !important;
  font-weight: 400 !important;
  opacity: 0.92;
  margin-bottom: 10px !important;
}

#about .content h3{
  font-size: 28px !important;
  font-weight: 800 !important;
}
#about .content p{ font-size: 15px !important; }
#about .content ul h5{
  font-size: 16px !important;
  font-weight: 800 !important;
}
#about .content ul p{
  font-size: 14px !important;
}

.service-card h5{
  font-size: 16px !important;
  font-weight: 800 !important;
}
.service-card p{
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.accordion-button{
  font-family: var(--sp-font-heading) !important;
  font-weight: 800 !important;
  font-size: 16px !important;
}

#termin h2{
  font-size: 30px !important;
  font-weight: 800 !important;
}
#termin .form-label{
  font-size: 14px !important;
  font-weight: 800 !important;
}
#termin .form-control{ font-size: 15px !important; }
#termin .btn.btn-success{
  font-family: var(--sp-font-heading) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
}

.footer .footer-about .logo span{
  font-family: var(--sp-font-heading) !important;
  font-weight: 800 !important;
  font-size: 20px !important;
}
.footer p, .footer a{ font-size: 14px !important; }

@media (max-width: 767px){
  h1{ font-size: 30px !important; }
  .hero .welcome h2{ font-size: 30px !important; }
  .hero .welcome p{ font-size: 15px !important; }
  .section-title h2{ font-size: 26px !important; }
  #about .content h3{ font-size: 24px !important; }
}
.footer-legal-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin-bottom:10px; 
}

.footer-legal-links a{
  color:#ffffff;
  text-decoration:none;
  opacity:0.92;
}

.footer-legal-links a:hover{
  opacity:1;
  text-decoration:underline;
}

.footer-legal-links span{
  color:#aaa;
}

.payment-wrap{
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}

.payment-title{
  font-weight: 600;
  letter-spacing: .2px;
}

.payment-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pay-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  font-weight: 500;
  transition: transform .15s ease, box-shadow .15s ease;
}

.pay-badge i{
  font-size: 1.1rem;
}

.pay-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.footer .social-links{
  margin-bottom: 14px !important; 
  gap: 16px;                      
}

.footer-legal-links{
  margin-top: 14px;               
  margin-bottom: 14px;            
}

.footer .copyright{
  text-align: center;
}

.footer .copyright p{
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  #hero .content.row{
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  #hero .content.row > .col-lg-4,
  #hero .content.row > .col-lg-8{
    flex: 0 0 100%;
    max-width: 100%;
  }

  #hero .content .why-box{
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  #hero .content .col-lg-8 .row.gy-4{
    justify-content: center;
  }

  #hero .content .col-lg-8 .row.gy-4 > [class*="col-"]{
    flex: 0 0 320px;
    max-width: 320px;
  }

  #departments .accordion-collapse .row.p-4.g-4{
    justify-content: center;
  }

  #departments .accordion-collapse .row.p-4.g-4 > .col-md-4{
    flex: 0 0 320px;
    max-width: 320px;
  }

  #departments .cta-booking{
    text-align: center;
    width: 100%;
  }
}

#comment { min-height: 56px; }

.btn-sp24{
  background:#0d6efd;       
  border-color:#0d6efd;
  color:#fff;
  font-weight:600;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(13,110,253,.18);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn-sp24:hover{
  background:#0b5ed7;
  border-color:#0b5ed7;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(13,110,253,.24);
}
.btn-sp24:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(13,110,253,.18);
}
.btn-sp24:focus{
  outline:0;
  box-shadow:0 0 0 .25rem rgba(13,110,253,.25);
}


#termin .offerte-step-title{
  font-weight: 700;
  margin-bottom: .25rem;
}

#termin .offerte-step-sub{
  font-size: .9rem;
  opacity: .8;
  margin-bottom: .75rem;
}


#termin #subServicesBox label,
#termin #extrasBox label{
  cursor: pointer;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  background: #fff;
}

#termin #subServicesBox label:hover,
#termin #extrasBox label:hover{
  transform: translateY(-1px);
  box-shadow: 0 .35rem 1rem rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.18) !important;
}

#termin #subServicesBox label.is-selected,
#termin #extrasBox label.is-selected{
  border-color: rgba(0,0,0,.28) !important;
  box-shadow: 0 .35rem 1.2rem rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}


#termin #subServicesBox label strong,
#termin #extrasBox label strong{
  white-space: nowrap;
  font-weight: 700;
}


#termin #subServicesBox input:disabled,
#termin #extrasBox input:disabled{
  opacity: .55;
  cursor: not-allowed;
}

#termin #subServicesBox label.is-disabled,
#termin #extrasBox label.is-disabled{
  opacity: .7;
}


@media (min-width: 992px){
  #termin .sp24-sticky{
    position: sticky;
    top: 110px; 
  }
}


#termin #summaryBox{
  line-height: 1.35;
}

#termin .sp24-summary-line{
  display: flex;
  gap: .5rem;
  justify-content: space-between;
  align-items: baseline;
  padding: .15rem 0;
  border-bottom: 1px dashed rgba(0,0,0,.12);
}

#termin .sp24-summary-line:last-child{
  border-bottom: 0;
}

#termin .sp24-muted{
  opacity: .8;
}


#termin .border.rounded {
  border-color: rgba(0,0,0,.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

#termin h5, #termin h6 {
  letter-spacing: .2px;
}

#termin #subServicesBox label,
#termin #extrasBox label {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08) !important;
  border-radius: 12px;
  padding: 12px 12px !important;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}

#termin #subServicesBox label:hover,
#termin #extrasBox label:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.14) !important;
}

#termin #subServicesBox label strong,
#termin #extrasBox label strong {
  font-weight: 700;
  letter-spacing: .2px;
}


#termin #subServicesBox label.is-selected,
#termin #extrasBox label.is-selected {
  border-color: rgba(13,110,253,.55) !important; /* bootstrap primary-ish */
  box-shadow: 0 10px 22px rgba(13,110,253,.12);
}


#termin #subServicesBox label.is-disabled,
#termin #extrasBox label.is-disabled {
  opacity: .55;
  filter: grayscale(20%);
  pointer-events: none;
}


#termin .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
}


#termin .bg-light {
  background: #f8fafc !important;
  border-radius: 14px !important;
}

#termin #summaryBox {
  color: rgba(0,0,0,.72) !important;
  font-size: 13px;
  line-height: 1.35;
}

#termin #summaryBox strong {
  color: rgba(0,0,0,.86);
}


#termin #totalPrice {
  font-size: 18px;
}


#termin .form-control {
  border-radius: 12px;
  border-color: rgba(0,0,0,.12);
}
#termin .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.12);
}


#termin .border.rounded {
  border-color: rgba(0,0,0,.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

#termin h5, #termin h6 {
  letter-spacing: .2px;
}

#termin #subServicesBox label,
#termin #extrasBox label {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08) !important;
  border-radius: 12px;
  padding: 12px 12px !important;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}

#termin #subServicesBox label:hover,
#termin #extrasBox label:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.14) !important;
}

#termin #subServicesBox label strong,
#termin #extrasBox label strong {
  font-weight: 700;
  letter-spacing: .2px;
}


#termin #subServicesBox label.is-selected,
#termin #extrasBox label.is-selected {
  border-color: rgba(13,110,253,.55) !important; 
  box-shadow: 0 10px 22px rgba(13,110,253,.12);
}


#termin #subServicesBox label.is-disabled,
#termin #extrasBox label.is-disabled {
  opacity: .55;
  filter: grayscale(20%);
  pointer-events: none;
}


#termin .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
}


#termin .bg-light {
  background: #f8fafc !important;
  border-radius: 14px !important;
}

#termin #summaryBox {
  color: rgba(0,0,0,.72) !important;
  font-size: 13px;
  line-height: 1.35;
}

#termin #summaryBox strong {
  color: rgba(0,0,0,.86);
}


#termin #totalPrice {
  font-size: 18px;
}


#termin .form-control {
  border-radius: 12px;
  border-color: rgba(0,0,0,.12);
}
#termin .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.12);
}


@media (max-width: 768px) {


  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .row.g-3 {
    --bs-gutter-y: 0.75rem;
    --bs-gutter-x: 0.75rem;
  }


  .form-control,
  select {
    padding: 0.45rem 0.6rem;
    font-size: 0.95rem;
  }

  label.form-label {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

 
  .border.rounded {
    padding: 0.75rem !important;
  }


  .sp24-sticky {
    position: relative;
    bottom: auto;
  }


  h5, h6 {
    font-size: 0.95rem;
  }

  small.text-muted {
    font-size: 0.75rem;
  }


  .btn-sp24 {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
  }
}



@media (min-width: 769px) {
  .border.rounded {
    padding: 1.1rem;
  }

  .form-control {
    border-radius: 8px;
  }

  .btn-sp24 {
    border-radius: 30px;
  }
}

@keyframes pricePulse {
  0%   { transform: scale(1); color: #000; }
  50%  { transform: scale(1.08); color: #0d6efd; }
  100% { transform: scale(1); color: #000; }
}

.price-animate {
  animation: pricePulse 0.35s ease-in-out;
}


@media (max-width: 768px) {
  .sp24-sticky {
    position: sticky;
    bottom: 10px;
    background: #f8f9fa;
    z-index: 10;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  }
}



#termin form#preisForm {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
  );
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(13, 110, 253, 0.15);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}

#totalPrice {
  transition: all 0.3s ease;
  animation: pricePulse 0.35s ease-in-out;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}







																																																												  .site-title 