/* Font Einbindung */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Grundlegende Stile */
:root {
  --blue: #1e5bb0;
  --blue-dark: #174a91;
  --blue-sky: #cae0ff;
  --blue-light: #e6f0ff;
  --gold: #eaaa3d;
  --gold-dark: #c0841b;
  --gold-light: #f9efd0;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-lrg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Höhe des Headers */
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mobile-only {
  display: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  line-height: 1.5;
  background-color: var(--gray-50);
}


.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;  
}

ul, ol {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
ul li, ol li {
  padding-left: .5rem;
  margin-bottom: .25rem;
}
ul {
  list-style-type: square;
}
ol {
  list-style-type: decimal;
}

.text-blue {
  color: var(--blue);
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.nobr {
  white-space: nowrap;
}

/* Buttons */
.modal-link {
  color: var(--blue);
}

button:hover, 
.modal-link:hover,
select:hover
{
  cursor: pointer;
}



/* Images */
img {
	max-width: 100%;
	max-height: auto;
}


/* Header */
.header {
  position: sticky;
  z-index: 90;
  top: 0;
  width: 100%;
  background-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .header {
    position: static;    
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  position: relative;
  height: 3rem;
  width: 3rem;
  overflow: hidden;
  border-radius: var(--radius-full);
  border: 2px solid var(--blue);
  padding: 0.125rem;
}

.logo-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue-light);
}

.main-nav {
  display: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link.active {
  color: var(--white);
}


.mobile-menu-button {
  display: fixed;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--blue-dark);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;  
    position: fixed;
    top: .75rem;
    right: 1.5rem;
    z-index: 99999;
  }
.mobile-menu-button.active {
  background-color: var(--blue);
}
.mobile-menu-button svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s ease;
}
.mobile-menu-button.active svg {
  transform: rotate(180deg);
}


@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}


@media (min-width: 768px) {  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }  
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: var(--blue-dark);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }
  .scroll .main-nav {
    top: 0rem;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-link {    
    font-size: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
  }

  .nav-link:hover {
    background-color: var(--blue-dark);
  }


.header-content {
    height: 4rem;
  }
  .logo-title {
    font-size: .85rem;
  }
}
@media (max-width: 330px) {
  .main-nav {    
    top: 3rem;
  }
  .mobile-menu-button {
    top: .25rem;
    right: 1rem;
  }

  .header-content {
    height: 3rem;
  }
  .logo-image {
    height: 2.5rem;
    width: 2.5rem;
  }
  .logo-text {
    display: none;
  }
  
}





.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--white);
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: var(--blue-dark);
}


/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--blue-sky), var(--white));
  padding: 2rem 0 0 0;
}

.hero .container {
  padding: 0 1.5rem;
}

.hero-circle-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: var(--radius-full);
  background-color: var(--gold-light);
  opacity: 0.7;
}

.hero-circle-2 {
  position: absolute;
  top: 9rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: var(--radius-full);
  background-color: var(--blue-light);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: repeat(12, 1fr);
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;  
  margin-bottom: 1rem;  
  background-color: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}

.badge.blue {
  background-color: var(--blue-light);
  color: var(--blue);
}

.badge .icon {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  margin-top: .5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  text-shadow: 2px 2px 0 var(--blue-light);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 330px) {
  .hero-title {
    font-size: 1.75rem;
  }  
}

@media (min-width: 768px) {
  .badge {
    margin-top: 1rem;
  }
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--gray-600);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.primary-button:hover {
  background-color: var(--blue-dark);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--blue);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.secondary-button:hover {
  background-color: var(--blue-light);
}

.hero-stats {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background-color: var(--blue-light);
  border-radius: var(--radius-xl);
  text-align: center;
}

.stat-item.stat-gold {
  background-color: var(--gold-light);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.stat-item.stat-gold .stat-value {
  color: var(--gold);
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--gray-600);
}

.hero-image-container {
  position: relative;  
}

.hero-image {
  position: relative;
  height: 25rem;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.hero-image-small {
  position: relative;
  max-height: 22rem;
  width: 70%;
  top: -9rem;
  right: 1.4rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to left, rgba(30, 91, 176, 0.6), transparent);
}

.hero-circle-3 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: var(--radius-full);
  border: 8px solid var(--white);
  background-color: var(--gold-light);
}

.hero-circle-4 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius-full);
  border: 8px solid var(--white);
  background-color: var(--blue-light);
}



@media (min-width: 1024px) {
  .hero-text {
    grid-column: span 5 / span 5;
  }
}
@media (min-width: 768px) {
  .hero-text {
    grid-column: span 6 / span 6;
    position: relative;
    top: -2rem;
  } 
  .hero-image-container {
    display: block;
    grid-column: span 6 / span 6;
  }   
}
@media (max-width: 768px) {  
  .hero-content {
    display: block;
  }
  .hero-text {
    position: relative;
    top: 0;
  }
  .hero-image-small.mobile-only {
    display: block;
    width: 10rem;
    height: auto;
    float: right;
    position: relative;
    right: -1rem;
    margin: .5rem;
  }
  .hero-text {
    display: block;
  }
  .hero-title, .badge {
    width: 90%;
  }
  .hero-image {
    height: auto;
    display: none;
  }
  .hero-image-large {
    display: none;
  }
  .hero-image-small {
    right: unset;
    top: unset;
    width: 100%;
  }
}
@media (max-width: 330px) {
  .hero-stats {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-image-small.mobile-only {
    width: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-image-container {
    grid-column: span 6 / span 7;
  }
}


/* Kontakt-Buttons */
.contact-buttons {
  display: flex;
  position: fixed;
  top: 6rem;
  right: 11rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: var(--blue);
}

.phone-button {
  color: var(--blue);
}

.phone-button:hover {
  background-color: var(--blue-light);
}

.whatsapp-button {
  color: #25D366;
}

.whatsapp-icon {
  background-color: #25D366;
}

.whatsapp-button:hover {
  background-color: #f0f9f0;
}

.email-button {
  color: var(--blue);
}

.email-icon {
  background-color: var(--blue);
}

.email-button:hover {
  background-color: var(--blue-light);
}

.patient-button {
  color: var(--blue);
}

.patient-button:hover {
  background-color: var(--blue-light);
}

.career-button {
  color: var(--blue);
}

.career-icon {
  background-color: var(--blue);
}

.career-button:hover {
  background-color: var(--blue-light);
}


@media (max-width: 1920px) {
  .contact-buttons {    
    right: 5rem;
  }
}
@media (max-width: 1440px) {
  .contact-buttons {    
    right: 1rem;
  }
}
@media (max-width: 768px) {
  .contact-buttons {
    right: 1.25rem;
    background: rgba(255,255,255,.75);
    padding: var(--radius);
    border-radius: var(--radius-full);
  }
  .contact-button {
    padding: 0;
    background-color: transparent;
  }
  .contact-button span {
    display: none;
  }
}
@media (max-width: 330px) {
  .contact-buttons {
    right: 1.25rem;
  }
}


/* Section Styles */
section .container {
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.section-title {
  margin-bottom: 1rem;
}

.section-content {
  padding: 1rem 0;
}
.section-content p {
  margin-bottom: 1rem;
}

.section-content h2 {
  margin-bottom: 1rem;
}
.section-content h3 {
  margin-bottom: 0.5rem;
}


/* Values Section */
.values-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.section-header {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.section-description {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--gray-600);
}

.values-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 330px) {
  .section-title {
    font-size: 1.25rem;
  }
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.value-circle {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: var(--radius-full);
  background-color: var(--blue-light);
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.value-card:hover .value-circle {
  transform: scale(1.1);
}

.value-circle.gold {
  background-color: var(--gold-light);
}

.value-content {
  position: relative;
  z-index: 10;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-xl);
  background-color: var(--blue-light);
}

.value-icon.blue-bg {
  background-color: var(--blue-light);
}

.value-icon.blue-bg .icon {
  color: var(--blue);
}

.value-icon.gold-bg {
  background-color: var(--gold-light);
}

.value-icon.gold-bg .icon {
  color: var(--gold);
}

.value-icon .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.value-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.value-description {
  color: var(--gray-600);
}

/* MD Section */
.md-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}
.md-section .image-container {
  margin-top: 1.5rem;
  text-align: center;
}
.md-section .image-container img {
	margin-bottom: 2rem;
}
.md-section h3 {
	margin-bottom: 1.25rem;
}


/* Map Section */
.map-section {
  position: relative;
  margin-top: -3rem;
  padding: 0 0 4rem;
  background-color: var(--white);
}

.map-container {
  position: relative;
  margin-top: 2rem;
}

.map-placeholder {
  position: relative;
  height: 16rem;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);  
}

.map-placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
}

.map-placeholder-content img {
  width: 100%;
  height: 100%;
  object-fit: none;
}

.map-placeholder-title {
	position: absolute;
	top: 8rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.map-placeholder-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.city {
  padding: 0.5rem 1rem;
  background-color: var(--blue-light);
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}
.city.more {
	background-color: var(--gold-light);
	color: var(--gold-dark);
}

.map-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .map-section {
    margin-top: 0;
  }
}


/* Services Section */
.services-section {
  padding: 3rem 0 4rem;
  background-color: var(--white);
}

.services-tabs {
  margin-top: 3rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  background-color: var(--blue-light);
  border-radius: var(--radius-full);
  padding: 0.25rem;
}

@media (max-width: 768px) {
  .tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    background-color: transparent;
    padding: 0;
  }
  
  .tab-button {
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    background-color: var(--blue-light);
    border-radius: var(--radius);
    text-align: center;
  }
  
  .tab-button.active {
    background-color: var(--blue);
    color: var(--white);
  }
}

@media (max-width: 330px) {
  .tabs-nav {
    grid-template-columns: 1fr;
  }
}

.tab-button {
  padding: 0.5rem 1.5rem;
  background-color: var(--blue-light);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tab-button.active {
  background-color: var(--blue);
  color: var(--white);
}

.tab-content {
  display: none;
  margin-top: 2rem;
}

.tab-content.active {
  display: block;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.service-circle {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: var(--radius-full);
  background-color: var(--blue-light);
  opacity: 0.3;
  transition: transform 0.3s ease;
}

.service-card:hover .service-circle {
  transform: scale(1.1);
}

.service-circle.gold {
  background-color: var(--gold-light);
}

.service-content {
  position: relative;
  z-index: 10;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-xl);
}

.service-icon.blue-bg {
  background-color: var(--blue-light);
}

.service-icon.blue-bg .icon {
  color: var(--blue);
}

.service-icon.gold-bg {
  background-color: var(--gold-light);
}

.service-icon.gold-bg .icon {
  color: var(--gold);
}

.service-icon .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.service-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.service-description {
  color: var(--gray-600);
}

.services-cta {
  margin-top: 2rem;
  text-align: center;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--blue);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.outline-button:hover {
  background-color: var(--blue-light);
}

.outline-button.gold {
  color: var(--gold);
  border-color: var(--gold);
}

.outline-button.gold:hover {
  background-color: var(--gold-light);
}

/* Beatmung Tab */
.beatmung-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .beatmung-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.beatmung-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.beatmung-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.beatmung-description {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.beatmung-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--blue-light);
  border-radius: var(--radius-xl);
}

.feature-item.gold {
  background-color: var(--gold-light);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: var(--blue);
}

.feature-icon.gold {
  background-color: var(--gold);
}

.feature-icon .icon {
  width: 1rem;
  height: 1rem;
  color: var(--white);
}

.feature-text {
  font-weight: 500;
}

/* Beratung Tab */
.beratung-container {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.beratung-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.beratung-description {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.beratung-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .beratung-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.beratung-item {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.beratung-item.blue {
  background-color: var(--blue-light);
}

.beratung-item.gold {
  background-color: var(--gold-light);
}

.beratung-item-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.beratung-item-description {
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .beratung-item.first {
    order: 10;
  }
  .beratung-item.second {
    order: 20;
  }
  .beratung-item.third {
    order: 50;
  }
  .beratung-item.fourth {
    order: 40;
  }
}
@media (max-width: 480px) {
  .beratung-container, .beatmung-card {
    padding: 1rem;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0 4rem;
  background-color: var(--white);
  overflow: hidden;
}

.testimonials-grid {
  margin: 3rem auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: -1.25rem;
  left: 1.5rem;
  color: var(--gold-light);
}

.quote-icon.blue {
  color: var(--blue-light);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--blue-light);
  font-weight: 700;
  color: var(--blue);
}

.author-avatar.gold {
  background-color: var(--gold-light);
  color: var(--gold);
}

.author-name {
  font-weight: 700;
  color: var(--gray-900);
}

.author-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonials-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 4rem 0;    
  background-image: linear-gradient(to right, var(--blue), var(--blue-dark));
  overflow: hidden;
}

.cta-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  border-radius: var(--radius-full);
  background-color: var(--gold);
  opacity: 0.1;
}

.cta-circle-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  border-radius: var(--radius-full);
  background-color: var(--gold);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}



.cta-badge {
	position: absolute;
	bottom: 1rem;
	left: 2%;
	z-index: 2;
	max-width: 140px;
}
.cta-badge img {
	width: 100%;
	height: auto;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
}

.cta-description {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;   
}

.cta-button-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--white);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-button-white:hover {
  background-color: var(--gold-light);
}

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--white);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

@media (max-width: 768px) {
  .cta-badge {
    position: static;
    margin: auto;
  }
}
@media (max-width: 640px) {    
  .cta-buttons {
    display: grid;
    grid-template-columns: 2fr 2fr;
    width: 200px;
    margin: 1rem auto;
  }
  .cta-buttons .cta-button-white,
  .cta-buttons .cta-button-outline 
  {
    max-width: 100%;
    width: 200px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto .5rem;
  }
  .cta-section {
    padding: 3rem 0 4rem;
  }
  .cta-badge {
    left: 1%;
    bottom: 1%;
  }
}
@media (max-width: 475px) {    
  .cta-buttons {
    grid-template-columns: 1fr;
    gap: .25rem;
    width: 100%;
  }
  .cta-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 330px) {
  .cta-title {
    font-size: 1.25rem;
  }
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-image {
  position: relative;
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius-full);
}

.footer-logo-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black);
}

.footer-description {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-full);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  background-color: var(--blue);
  color: var(--white);
}

.footer-heading {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-900);
}



ul.footer-contact, 
ol.footer-contact,
ul.footer-contact li, 
ol.footer-contact li, 
ul.footer-links, 
ol.footer-links,
ul.footer-links li, 
ol.footer-links li {
  padding-left: 0;
  margin-left: 0;
}
.footer-contact {
  list-style: none;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.footer-contact-item a {
	color: var(--gray-600);
	text-decoration: none;
}

.footer-contact-item .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal-content {
  position: relative;
  z-index: 1001;
  top: 3%;
  right: 1%; 
  left: 1%;
  background-color: var(--white);
  margin: 2% auto;
  padding: 1.5rem;
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gray-900);
  text-align: left;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--gray-600);
}

.close:hover {
  color: var(--gray-900);
}

#contactForm, #careerForm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: .75rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkbox-container:hover {
  cursor: pointer;
}
.checkbox-container input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 24px;
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: left;
}

.submit-button {
  grid-column: 1 / -1;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-button:hover {
  background-color: var(--blue-dark);
}

@media (max-width: 768px) {
  .modal-content {
    position: relative;
    z-index: 999999;
    top: .75rem;
    font-size: .85rem;
    line-height: 1.2;
  }
  .form-group, .form-row {
    margin-bottom: .5rem;
  }
  #contactForm, #careerForm {
    gap: .5rem;
  }
}
@media (max-width: 500px) {
  #contactForm, #careerForm {
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 768px) {
  .form-group.full-width {
    grid-column: auto;
  }
  
  .form-group.full-width:nth-child(1),
  .form-group.full-width:nth-child(2) {
    grid-column: span 1;
  }
}

@media (min-width: 500px) {
  #contactForm, #careerForm {
    grid-template-columns: 1fr 1fr;
  }

  /* Kontaktformular Layout */
  #contactForm .form-group:nth-child(1),
  #contactForm .form-group:nth-child(2) {
    grid-column: span 1;
  }

  #contactForm .form-row {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  #contactForm .form-group:nth-child(5),
  #contactForm .form-group:nth-child(6) {
    grid-column: 1 / -1;
  }

  /* Jobanfrage Formular Layout */
  #careerForm .form-group:nth-child(1),
  #careerForm .form-group:nth-child(2) {
    grid-column: span 1;
  }

  #careerForm .form-group:nth-child(3),
  #careerForm .form-group:nth-child(4) {
    grid-column: 1 / -1;
  }
}

/* Spezifische Regeln für Jobanfrage-Formular */
#careerForm .form-group:nth-child(5), /* Nachricht */
#careerForm .form-group:nth-child(6), /* Anhang */
#careerForm .form-group:nth-child(7) { /* Checkbox */
  grid-column: 1 / -1;
}

@media (max-width: 500px) {
  #contactForm, #careerForm {
    grid-template-columns: 1fr; 
  }
}

/* Consent Banner Styles */
#consent-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2147483646;
}

#consent-banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-image: linear-gradient(to right, var(--blue), var(--blue-dark));
    padding: 2rem 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2147483647;
}

#consent-overlay.hidden,
#consent-banner.hidden {
    display: none;
}

.consent-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.consent-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.consent-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.consent-content a {
    color: var(--gold);
    text-decoration: none;
}

.consent-content a:hover {
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.consent-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.consent-button.accept {
    background-color: var(--white);
    color: var(--blue);
}

.consent-button.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

@media (max-width: 768px) {
    .consent-content h2 {
        font-size: 1.5rem;
    }

    .consent-content p {
        font-size: 1rem;
    }

    .consent-buttons {
        flex-direction: column;
        max-width: 200px;
        margin: 1rem auto 0;
    }
    
    .consent-button {
        width: 100%;
    }
}

@media (max-width: 475px) {
    .consent-content h2 {
        font-size: 1.25rem;
    }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.phone-button, .patient-button {
  animation: shake 1.25s ease-in-out;
  animation-iteration-count: 3;
}

/* Partner Section */
.partner-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.partner-item img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .partner-item {
    padding: 0.75rem;
  }
  
  .partner-item img {
    max-height: 50px;
  }
}



