/* 
* Ergotherapie-Praxis focus - Custom CSS
* Pastellfarben-Palette:
* Primär: #F8F0E5 (Beige/Creme)
* Sekundär: #EADBC8 (Warmes Pastell)
* Akzent 1: #DAC0A3 (Sand)
* Akzent 2: #66594D (Grau-Beige)
* Text: #66594D (Dunkelgrün an logo angelegt)
*/

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* Base Styles */
.custom-css-content body {
    font-family: 'Quicksand', Arial, sans-serif;
    color: #66594D;
    overflow-x: hidden;
}



.custom-css-content h1, 
.custom-css-content h2, 
.custom-css-content h3, 
.custom-css-content h4, 
.custom-css-content h5, 
.custom-css-content h6 {
    font-family: 'Montserrat', sans-serif;
    color: #66594D;
}

.custom-css-content h2 {
    font-family: 'Dancing Script', cursive;
    color: #66594D;
    font-size: 5rem;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.custom-css-content .container {
    max-width: 1400px;
}

/* Navigation */
.custom-css-content .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    padding: 0 40px;
    background-color: #F8F0E5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.navbar-nav,
.nav,
.main-navigation {
    font-family: 'Quicksand', Arial, sans-serif !important;
    font-size: 1.0rem;
    letter-spacing: 0.04em; /* Adjust this value as needed */
}

.bg-light {
  background-color: #fff !important
}

#footer {
  background-color: #eadbc8 !important
}

.custom-css-content .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 20%;
    padding: 0;
}

.custom-css-content .navbar-brand img {
    height: 100px;
    max-height: 150px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

.custom-css-content .navbar-nav {
    display: flex;
    justify-content: center;
    flex: 1 1 0%;
    text-align: center;
    font-family: 'Nunito', 'Quicksand', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.custom-css-content .navbar-nav .nav-link {
    color: #66594D;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    transition: color 0.3s ease;
    font-size: 1.0rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.custom-css-content .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.8em;
    height: 2.8em;
    background: #DAC0A3;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s, background 0.3s;
    z-index: -1;
}

.custom-css-content .navbar-nav .nav-link:hover::before,
.custom-css-content .navbar-nav .nav-link:focus::before {
    transform: translate(-50%, -50%) scale(1.2);
    background: #DAC0A3;
}

.custom-css-content .navbar-nav .nav-link:hover,
.custom-css-content .navbar-nav .nav-link:focus {
    color: #66594D;
}

.custom-css-content .navbar-toggler {
    border: none;
    outline: none;
}

.custom-css-content .navbar-scrolled {
    background-color: #F8F0E5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@supports (position: sticky) {
    .sticky-top {
      position: sticky;
      top: 0;
      z-index: 1020;
      background: rgba(255, 255, 255, 0.58);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background 0.3s, backdrop-filter 0.3s;
    }
}

/* Hero Section */
.custom-css-content .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    text-align: center;
}

.custom-css-content .hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.7); /* or your overlay color */
    z-index: 1;
}

.custom-css-content .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.custom-css-content .hero-content h1 {
    font-family: 'Dancing Script', cursive !important;
    font-size: 6rem;
    font-weight: 700;
    color: #66594D;
    margin-bottom: 1rem;
    text-align: center;
}

.custom-css-content .hero-section .lead {
    font-weight: 400;
	font-size: 1.4rem;
}

.custom-css-content .cta-btn {
    display: inline-block;
    background: #66594D;
    color: #fff;
    border: none;
    border-radius: 50px !important;
    padding: 1.1em 2.5em !important;
    font-size: 1.3rem;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 1.5rem;
    z-index: 2;
    position: relative;
}

.custom-css-content .cta-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.8em;
    height: 2.8em;
    background: #DAC0A3;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s, background 0.3s;
    z-index: -1;
}

.custom-css-content .cta-btn:hover,
.custom-css-content .cta-btn:focus {
    color: #66594D;
    background: transparent;
}

.custom-css-content .cta-btn:hover::before,
.custom-css-content .cta-btn:focus::before {
    transform: translate(-50%, -50%) scale(1.8);
    background: #88e8bb;
}

/* Fachbereiche & Spezialisierungen Cards */
.custom-css-content .card {
    position: relative;
    overflow: hidden;
	border-radius: 1rem;
}

.custom-css-content .card-body {
    position: relative;
    height: 100%;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
}
/* 
.custom-css-content .card:hover {
    border-color: #DAC0A3;
}
*/
.custom-css-content .icon-container {
    color: #DAC0A3;
    margin-bottom: 1rem;
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 70px;
}

.custom-css-content .icon-container i {
    font-size: 3.5rem !important;
    line-height: 1;
}

.custom-css-content .card-title {
    color: #66594D;
    font-weight: 600;
}

.custom-css-content .featured-card {
    border: 2px solid #DAC0A3;
    background-color: #F8F0E5;
    transform: scale(1.05);
}

.custom-css-content .featured-card:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Über mich Section */
.custom-css-content .placeholder-image {
    width: 250px;
    height: 250px;
    background-color: #EADBC8;
    border-radius: 50%;
    margin: 0 auto;
}

/* Die Praxis Section */
.custom-css-content .practice-image-placeholder {
    height: 200px;
    background-color: #EADBC8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


/* Kontakt Section */
.custom-css-content .map-placeholder {
    height: 350px;
    background-color: #EADBC8;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.custom-css-content .map-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.custom-css-content .map-link:hover {
    transform: scale(1.02);
}

.custom-css-content .map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.custom-css-content .form-control,
.custom-css-content .form-select {
    border: 1px solid #EADBC8;
    padding: 0.75rem;
    color: #66594D;
}

.custom-css-content .form-control:focus,
.custom-css-content .form-select:focus {
    border-color: #DAC0A3;
    box-shadow: 0 0 0 0.25rem rgba(218, 192, 163, 0.25);
}

.custom-css-content .submit-btn {
    background-color: #DAC0A3;
    color: #66594D;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-css-content .submit-btn:hover {
    background-color: #66594D;
    transform: translateY(-3px);
}

.custom-css-content .prescription-image-placeholder {
    height: 200px;
    background-color: #EADBC8;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Footer */
.custom-css-content footer {
    background-color: #102C57;
    color: #F8F0E5;
}

.custom-css-content footer h5 {
    color: #F8F0E5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.custom-css-content footer a {
    color: #F8F0E5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-css-content footer a:hover {
    color: #DAC0A3;
}

.custom-css-content .social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
}

.custom-css-content .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #66594D;
    font-size: 2.5rem;
}

.custom-css-content .social-icons a:hover {
    background-color: #DAC0A3;
    color: #66594D;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .custom-css-content .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .custom-css-content .featured-card {
        transform: none;
    }
    
    .custom-css-content .featured-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 767.98px) {
    .custom-css-content .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    .custom-css-content .hero-section h1 {
        font-size: 3.5rem;
    }
    .custom-css-content .wave {
        display: none;
    }
    .custom-css-content h2 {
      font-size: 3rem;
    }
}

/* Prevent line break in hero section and align all elements in one line */
.nowrap-hero {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
}

.heart-container {
    display: inline-flex;
    position: relative;
    width: 2em;
    height: 2em;
    margin: 0 0.2em;
    vertical-align: baseline;
}

.heart {
    display: inline-block;
    position: relative;
    width: 2em;
    height: 2em;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
}

.heart span {
    top: 0.8em;
    left: 0.8em;
    position: absolute;
    width: 0.8em;
    height: 0.8em;
    background: #67cea3;
    animation: heartPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.heart span:after,
.heart span:before {
    content: " ";
    position: absolute;
    display: block;
    width: 0.8em;
    height: 0.8em;
    background: #67cea3;
}

.heart span:before {
    left: -0.6em;
    border-radius: 50% 0 0 50%;
}

.heart span:after {
    top: -0.6em;
    border-radius: 50% 50% 0 0;
}

@keyframes heartPulse {
    0% {
        transform: scale(0.95);
    }
    5% {
        transform: scale(1.05);
    }
    39% {
        transform: scale(0.9);
    }
    45% {
        transform: scale(1);
    }
    60% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(0.9);
    }
}

/* Ensure hero text after heart matches style */
.hero-section .lead .nowrap-hero {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    font-weight: inherit;
    }

/* Override Nova/JTL template for hero CTA button hover/focus */
.custom-css-content .hero-section .cta-btn:hover,
.custom-css-content .hero-section .cta-btn:focus {
    color: #232323 !important;
    box-shadow: none !important;
    outline: none !important;
}

.nav-scrollbar .nav, .nav-scrollbar .navbar-nav {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  width: 100%;
}

#header-top-bar a:not(.dropdown-item):not(.btn):hover, header a:not(.dropdown-item):not(.btn):hover {
  color: #05684d;
}

#home,
#fachbereiche,
#spezialisierungen,
#ueber-mich,
#praxis,
#kontakt {
  scroll-margin-top: 0px;
}

@media (min-width: 992px) {
    #content-wrapper:not(.has-fluid) {
      padding-top: 0rem !important;
    }
}

.hero-plant-btn {
  position: relative;
  padding: 10px 35px;
  background: #67cea3;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: all .3s ease-in-out;
  cursor: pointer;
  margin-top: 50px;
  margin-bottom: 30px;
  display: inline-block;
  text-decoration: none;
}

.hero-plant-btn .icon-1,
.hero-plant-btn .icon-2,
.hero-plant-btn .icon-3,
.hero-plant-btn .icon-4,
.hero-plant-btn .icon-5 {
  position: absolute;
  top: 60%; 
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: auto;
  transition: all .5s ease-in-out;
  z-index: -1;
}

.hero-plant-btn .icon-2,
.hero-plant-btn .icon-3,
.hero-plant-btn .icon-4,
.hero-plant-btn .icon-5 {
  z-index: -2;
}
.hero-plant-btn:hover {
  padding: 10px 35px;
  border-radius: 8px 8px 24px 24px;
  color: #fff;
}


.hero-plant-btn:hover .icon-1 {
  top: -250%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 50px;
  height: auto;
  animation: inIcon1 1s ease .45s forwards;
}
@keyframes inIcon1 {
  0% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
  25% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(5deg); }
  50% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(1deg); }
  65% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(3deg); }
  100% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
}
.hero-plant-btn:hover .icon-2 {
  position: absolute;
  top: -200%;
  left: 90%;
  transform: translate(-50%, 0);
  width: 75px;
  height: auto;
  animation: inIcon2 1s ease .45s forwards;
}
@keyframes inIcon2 {
  0% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
  35% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(10deg); }
  50% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(4deg); }
  80% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(5deg); }
  100% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
}
.hero-plant-btn:hover .icon-3 {
  position: absolute;
  top: -130%;
  left: 20%;
  transform: translate(-50%, 0);
  width: 60px;
  height: auto;
  animation: inIcon3 1s ease .45s forwards;
}
@keyframes inIcon3 {
  0% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
  35% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(-2deg); }
  100% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
}
.hero-plant-btn:hover .icon-4 {
  position: absolute;
  top: -300%;
  left: 10%;
  transform: translate(-50%, 0);
  width: 85px;
  height: auto;
  animation: inIcon4 1s ease .45s forwards;
}
@keyframes inIcon4 {
  0% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
  40% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(-3deg); }
  100% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
}
.hero-plant-btn:hover .icon-5 {
  position: absolute;
  top: -350%;
  left: 90%;
  transform: translate(-50%, 0);
  width: 85px;
  height: auto;
  animation: inIcon5 1s ease .45s forwards;
}
@keyframes inIcon5 {
  0% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
  35% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(-3deg); }
  100% { transform-origin: 0 100%; transform: translate(-50%, 0) rotate(0deg); }
}
.fil-leaf-1 { fill: #88e8bb }
.fil-leaf-2 { fill: #88e8bb; fill-rule: nonzero }
.fil-leaf-3 { fill: #88e8bb }
.fil-leaf-4 { fill: #88e8bb }
.fil-leaf-5 { fill: #88e8bb }

/* Remove margin override for .row and add proper gap for card grids */
/* Entfernt die globale Margin, damit gap funktioniert */
/* .row {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
} */


@media (max-width: 991.98px) {
  .custom-css-content .row.g-4,
  .row.g-4 {
    gap: 1.5rem 1.5rem !important;
  }
}
@media (max-width: 767.98px) {
  .custom-css-content .row.g-4,
  .row.g-4 {
    gap: 1rem 0.5rem !important;
  }
}

body, .custom-css-content {
    font-family: 'Quicksand', Arial, sans-serif !important;
	letter-spacing: 0.04em; /* Adjust this value as needed */
}

.pb-5, .py-5 {
  padding-bottom: 5rem !important;
  padding-top: 5rem !important;
}

.custom-css-content .hero-bg-layer {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    background-image: url('/media/image/storage/opc/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    pointer-events: none;
}
.custom-css-content .hero-bg-layer::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, #fff 100%);
}

.fachbereich-btn {
  border-radius: 2rem;
  border-width: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.45rem 1.5rem;
  transition: background 0.2s, color 0.2s, border 0.2s;
  background: #fff;
  color: #66594D;
  border-color: #88e8bb;
}
.fachbereich-btn:hover, .fachbereich-btn:focus {
  background: #88e8bb;
  color: #fff;
  border-color: #88e8bb;
  text-decoration: none;
}

.fach-btn {
  display: block;
  margin: 1.5rem auto 0 auto;
  width: 50%;
  padding: 0.6rem 0.6rem;
  color: #66594D;
  border: 2px solid #DAC0A3;
  text-decoration: none;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(136,232,187,0.07);
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
  text-align: center;
  font-weight: 600;
}
.fach-btn:hover, .fach-btn:focus {
  background:  #fff;
  color: #66594D;
  border-color: #88e8bb;
  box-shadow: 0 4px 16px rgba(136,232,187,0.13);
  text-decoration: none;
}

.kontakt-btn {
    margin-left: 0;
    margin-right: auto;
}

/* Pädiatrie Highlight Card Custom Style */
.custom-css-content .paediatrie-highlight-card {
    background: #fff;
    border: none;
	border: 2px solid #f5f7fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}





/* Leaf SVG effect for Pädiatrie card */
/*
.custom-css-content .paediatrie-leaf-effect {
    position: absolute;
    top: 5%;
    left: 37%;
    width: 120px;
    height: 120px;
    opacity: 0.18;
    filter: blur(10px);
    pointer-events: none;
    transition: 
        top 2.2s cubic-bezier(0.4, 0.0, 0.2, 1),
        left 2.2s cubic-bezier(0.4, 0.0, 0.2, 1),
        width 2.2s cubic-bezier(0.4, 0.0, 0.2, 1),
        height 2.2s cubic-bezier(0.4, 0.0, 0.2, 1),
        opacity 2.2s cubic-bezier(0.4, 0.0, 0.2, 1),
        filter 2.2s cubic-bezier(0.4, 0.0, 0.2, 1),
        transform 2.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 0;
    transform: none;
}
.custom-css-content .paediatrie-highlight-card:hover .paediatrie-leaf-effect {
    top: 100%;
    left: 100%;
    width: 360px;
    height: 360px;
    opacity: 0.22;
    filter: blur(0px);
    transform: translate(-80%, -80%) rotate(20deg);
}
*/

.custom-css-content .paediatrie-highlight-card .card-title {
    color: #66594D !important;
    font-weight: 700;
}

.custom-css-content .paediatrie-highlight-card .badge {
    background: linear-gradient(45deg, #88e8bb, #67cea3) !important;
    border: none;
    color: #fff;
    font-weight: 600;
    /* Add white background for visibility */
    background: #67cea3 !important;
	color: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 0.5rem;
    padding: 0.35em 0.8em;
    position: relative;
    z-index: 2;
	font-size: 90%;
}


.custom-css-content .about-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: none;
}

.custom-css-content .about-lidia-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-css-content .about-lidia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #DAC0A3;
    background: #fff;
    box-shadow: 0 2px 12px rgba(218, 192, 163, 0.18);
    display: block;
}

.custom-css-content .about-lidia-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #f8f0e5;
    opacity: 0.25;
    pointer-events: none;
}

.spezialisierung-img-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    z-index: 0;
    pointer-events: none;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;
}
.spezialisierung-img-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 1;
    pointer-events: none;
}
.spezialisierung-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: block;
}

.spezialisierung-btn {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    transform: translateX(-50%);
    width: auto;
    z-index: 2;
	background: #ffffffd6;
}

.spezialisierung-text {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    margin-bottom: 3rem;
	margin-left: 2rem;
	margin-right: 2rem;
}

#spezialisierungen .card-body {
    position: relative;
    min-height: 480px;
    padding-bottom: 5.5rem;
}

.custom-css-content .card-body {
    position: relative;
    z-index: 1;
}

#spezialisierungen .card {
    min-height: 800px;
}


.custom-css-content .paediatrie-highlight-card .badge {
    z-index: 2;
    position: relative;
}

/* Custom padding for practice cards */
.practice-card-col {
    padding-bottom: 2rem;
}

/* Menschen mit Behinderung image styling */
.menschen-behinderung-img {
    max-height: 800px;
    object-fit: cover;
    width: 90%;
    border-radius: 1.0rem !important;
}

/* Fachbereiche image styling */
.fachbereich-img {
    max-height: 800px;
    object-fit: cover;
    width: 90%;
    border-radius: 1.0rem !important;
}

/* Treatment lists styling */
.treatment-list {
    text-align: start;
    margin-left: 3rem;
}

.treatment-list li {
    margin-bottom: 0.25rem;
    display: flex;
}

.treatment-list li i {
    color: #67cea3;
    margin-right: 0.75rem;
    min-width: 1rem;
}

.icon-inline-special {
    color: #DAC0A3;
    min-width: 2rem;
    font-size: 1.5rem !important;
  }
