/* Allgemeine Einstellungen für die Seite */
body {
    font-family: Arial, sans-serif;
    background: url('background.webp') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    max-width: 1000px;
    margin: 0 auto; /* Zentrierung der Seite */
    padding: 20px;
}

/* Header Bereich */
/* Desktop Version */
.header-container {
    position: relative;
    width: 100%;
    height: 256px; /* Fixe Höhe für Desktop */
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* 💬 Header mit Text */
.header-textbereich {
  position: relative;
  width: 100%;
  height: 177px;
  overflow: hidden;
}

.header-textbereich .header-image {
  width: 100%;
  height: 177px;
  object-fit: cover;
}

/* ❤️ Text oben und unten zentriert im Header */
.header-text-oben,
.header-text-unten {
	position: absolute;
	width: 100%;
    max-width: 90%;
	box-sizing: border-box;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
	z-index: 3;
	padding: 0 20px;                   /* extra Seitenabstand */
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
		/*white-space: nowrap;               /* verhindert Umbruch */
}

.header-text-oben {
  top: 20px;
}

.header-text-unten {
  bottom: 20px;
}

/* 🎛 Header mit Buttons */
.header-buttonsbereich {
  display: flex;
  flex-wrap: wrap;               /* Buttons dürfen umbrechen */
  justify-content: center;       /* Zentriert auch zweite Reihe */
  gap: 20px 20px;                /* Abstand zwischen Reihen & Spalten */
  padding: 20px;
  background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
  border-radius: 10px;
  margin-top: 20px;              /* Abstand vom Header nach unten */
}

.header-buttonsbereich button {
  width: 160px;                  /* Einheitliche Breite */
  height: 45px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-buttonsbereich button:hover {
  background: linear-gradient(to bottom, #e6f7ff, #d0f0ff);
  border-color: #aad4ea;
  color: #4ca7e6;
  transform: scale(1.05);
}



/* Mobile Version */
@media (max-width: 768px) {
	.header-container {
        position: relative;
        width: 100%;
        height: auto; /* Automatische Höhe */
        overflow: hidden;
        padding: 0; /* Kein zusätzlicher Außenabstand */
    }

    .header-image {
        width: 100%;
        height: 100%; /* Bild passt sich an den Inhalt an */
        object-fit: cover;
        border-radius: 10px;
    }
	
	.header-textbereich {
		position: relative;
		width: 100%;
		height: 77px;
		overflow: hidden;
	}

	.header-textbereich .header-image {
  width: 100%;
  height: 77px;
  object-fit: cover;
	}

  .header-text-oben,
  .header-text-unten {
    font-size: 1.1rem;
	width: 100%;
    max-width: 90%;
	box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0 10px;
    white-space: normal; /* erlaubt Umbruch falls nötig */
	word-wrap: break-word;
	overflow-wrap: break-word;

  }

  .header-text-unten {
    bottom: 11px;
  }

  .header-text-oben {
    top: 11px;
  }

  .header-buttonsbereich {
    padding: 11px 11px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px 11px; /* Abstand zwischen Zeilen & Spalten */
  }

  .header-buttonsbereich button {
    flex: 1 1 calc(50% - 12px); /* Zwei Buttons nebeneinander mit Abstand */
    max-width: 48%;
    height: 32px;
    font-size: 14px;
    padding: 4px 8px;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
  }
}



/* Footer Bereich */
/* Footer Container */
.footer-container {
    position: relative;
    width: 100%;
    height: auto; /* Automatische Höhe */
    overflow: hidden;
}

/* Footer Bild */
.footer-image {
    width: 100%;
    height: 150px; /* Begrenzte Höhe für Desktop */
    object-fit: cover;
    border-radius: 10px;
}

/* Overlay-Bereich */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between; /* Buttons links, Text rechts */
    align-items: center;
    padding: 10px 20px; /* Abstand vom Rand */
    box-sizing: border-box;
    gap: 20px; /* Abstand zwischen Buttons und Text */
}

/* Buttons Bereich */
.footer-buttons {
    display: flex;
    flex-direction: column; /* Buttons untereinander */
    gap: 10px; /* Abstand zwischen Buttons */
    align-items: flex-start; /* Links ausgerichtet */
}

/* Buttons Styling */
.footer-buttons button {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-buttons button:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Text Bereich */
.footer-text {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    text-align: right;
    flex-grow: 1;
}

@media (max-width: 768px) {
    /* Reduzierte Bildhöhe */
    .footer-image {
        height: 140px; /* Angepasste Höhe für mobile Geräte */
    }

    /* Overlay-Bereich für mobile Ansicht */
    .footer-overlay {
        flex-direction: column; /* Inhalte untereinander */
        align-items: flex-start; /* Inhalte linksbündig */
        padding: 10px 15px; /* Kleinere Ränder */
        gap: 10px; /* Abstand zwischen den Bereichen */
    }

    /* Buttons linksbündig */
    .footer-buttons {
        width: 100%; /* Volle Breite */
        align-items: flex-start; /* Links ausgerichtet */
    }

    /* Text unter den Buttons */
    .footer-text {
        width: 100%; /* Volle Breite */
        text-align: left; /* Links ausgerichtet */
        font-size: 0.8rem; /* Kleinere Schriftgröße */
        margin-top: 11px; /* Abstand zu den Buttons */
    }
}





/* Hauptinhalt */
#content {
    padding: 20px; /* Innenabstand */
    background-color: rgba(255, 255, 255, 0.9); /* Transparenter weißer Hintergrund */
    border-radius: 10px; /* Abgerundete Ecken */
    margin: 11px auto; /* Zentrierung */
}

.section {
	display: flex;
	flex-direction: column; /* Die Elemente werden untereinander angeordnet */
	align-items: center; /* Horizontale Zentrierung */
	justify-content: center; /* Vertikale Zentrierung */
	padding: 10px; /* Genügend Abstand für den Inhalt */
	box-sizing: border-box; /* Damit Padding in die Gesamtgröße einfließt */
	text-align: center;
	max-width: 100%;
	margin: 0 auto;
	background-color: #f9f9f9;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Mobile Ansicht */
@media (max-width: 768px) {
    .services-container {
        padding: 10px; /* Weniger Padding auf mobilen Geräten */
        margin: 11px auto; /* Weniger Abstand vom Rand */
    }
}

/* Überschriften */
h2 {
    color: #4ca7e6; /* Sanfte, warme Farbe */
    font-size: 1.7rem; /* Große Schriftgröße */
    font-weight: bold; /* Markant und doch elegant */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Dezenter Schatten für Tiefe */
    margin-bottom: 22px; /* Abstand unter der Überschrift */
    border-bottom: 3px solid #add8e6; /* Dezente Linie unter der Überschrift */
    padding-bottom: 5px; /* Abstand zur Linie */
    display: inline-block; /* Erlaubt Padding mit Unterstreichung */
}
h3 {
    margin-top: 11px;
    color: #4ca7e6;
    font-size: 1.3rem;
	text-align: center;
}

/* Paragraphen */
p {
    font-size: 1.1rem;
    margin-bottom: 11px;
    color: #333;
}



/* Startseite */
/* Styling für Textblöcke */
.intro-container, .intro-text, .intro-links {
    max-width: 800px;
    margin: 11px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}



/* Button */
.intro-button-container button {
    padding: 10px 20px;
    background-color: #4ca7e6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.intro-button-container button:hover {
    background-color: #3a6ea5;
}

/* Links */
.intro-links a {
    color: #4ca7e6;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.intro-links a:hover {
    color: #3a6ea5;
}

/* Abstand zwischen Abschnitten */
.spacer {
    height: 40px; /* Höhe des Abstands */
}

/* Container für den Button */
.intro-button-container {
    display: flex; /* Flexbox für Zentrierung */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung (optional, falls Höhe gesetzt) */
    margin-top: 11px; /* Abstand nach oben */
}

/* Button-Styling */
.intro-button-container button {
    padding: 15px 25px;
    background: linear-gradient(135deg, #d0f4de, #3a6ea5); /* Warmer Farbverlauf */
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px; /* Runde, weiche Form */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtiler Schatten */
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover-Effekt */
.intro-button-container button:hover {
    background: linear-gradient(135deg, #3a6ea5, #d0f4de); /* Intensiver Farbverlauf beim Hover */
    transform: scale(1.05); /* Sanfte Vergrößerung */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Stärkerer Schatten */
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    /* Container auf mobilen Geräten mit weniger Padding */
    .intro-text {
        padding: 15px;
        max-width: 100%; /* Weniger Breite auf mobilen Geräten */
    }

    /* Überschrift auf mobilen Geräten kleiner */
    .intro-text h2 {
        font-size: 1.1em; /* Kleinere Schriftgröße */
    }

    /* Textgröße für mobile Ansicht */
    .intro-text p {
        font-size: 1em;
    }

    /* Listenelemente auf mobilen Geräten kleiner */
    .intro-text li {
        font-size: 0.9em; /* Kleinere Schriftgröße */
    }

    /* Bildgröße auf mobilen Geräten anpassen */
    .intro-image {
        width: 100%; /* Bild nimmt die gesamte Breite auf kleinen Geräten ein */
        margin-bottom: 11px; /* Abstand nach unten */
    }

    /* Container für Text und Bild */
    .intro-container {
        flex-direction: column; /* Bild und Text untereinander auf kleinen Geräten */
        align-items: center; /* Beide zentrieren */
    }
	
	.intro-container h2 {
        font-size: 1.1rem; /* Kleinere Schriftgröße für Mobilgeräte */
    }
	
    .intro-links {
        padding: 10px; /* Weniger Polsterung für kleinere Bildschirme */
    }
    .intro-links a {
        font-size: 1rem; /* Kleinere Schriftgröße */
    }
	
    .intro-button-container button {
        font-size: 1rem;
        width: 100%; /* Button füllt die Breite */
    }
}










/* Über mich */
/* Inhalt mit Foto links und Text rechts */
.about-content {
    display: flex;
    flex-direction: row; /* Bild und Text nebeneinander */
    align-items: center;
    gap: 20px; /* Abstand zwischen Bild und Text */
}

/* Foto Styling */
.about-photo {
    flex: 1; /* Nimmt 1 Teil des verfügbaren Platzes ein */
}

.about-image {
    max-width: 100%;
    width: 200px; /* Breite des Bildes */
    border-radius: 5%; /* Rundes Bild */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* Text Styling */
.about-text {
    flex: 2; /* Nimmt 2 Teile des verfügbaren Platzes ein */
    font-size: 1.1em;
    line-height: 1.6;
    text-align: left; /* Text linksbündig */
}

/* Liste Styling */
.about-list {
    list-style-type: disc;
    margin-left: 11px;
    color: #005a99;
}

/* Links in der Liste */
.about-list a {
    color: #4ca7e6;
    text-decoration: none;
    font-weight: bold;
}

.about-list a:hover {
    color: #3a6ea5;
    text-decoration: underline;
}

/* Kontaktinfo */
.contact-info a {
    color: #005a99;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    color: #3a6ea5;
    text-decoration: underline;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Bild und Text untereinander auf mobilen Geräten */
    }
    .about-image {
        width: 150px; /* Kleinere Bildgröße auf mobilen Geräten */
    }
    .about-text {
        text-align: center; /* Text zentriert für Mobilgeräte */
    }
}






/* Kontaktinformationen */
.contact-section {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-info {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 11px;
    line-height: 1.6;
}

.contact-info a {
    color: #4ca7e6;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Kontaktformular */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form label {
    font-size: 1em;
    font-weight: bold;
    color: #333;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #4ca7e6;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #005a99;
    transform: scale(1.05);
}

/* Button für Gratis-Gespräch */
.intro-button-container {
    margin-top: 11px; /* Abstand nach oben */
    text-align: center; /* Zentriert den Button */
}

.intro-button-container button {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #4ca7e6; /* Angenehme Farbe passend zur Seite */
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.intro-button-container button:hover {
    background-color: #3a6ea5; /* Leuchtendere Farbe beim Hover */
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}


/* Mobile Ansicht */
@media (max-width: 768px) {
    .contact-section {
        padding: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        max-width: 100%;
    }

    .contact-info {
        font-size: 1em;
    }

    .contact-form button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}











/* Lavylites */

	/* Flexbox-Container für die gesamte Lavylites-Sektion */
	.lavylites-section {
		display: flex;
		flex-direction: column; /* Die Elemente werden untereinander angeordnet */
		align-items: center; /* Horizontale Zentrierung */
		justify-content: center; /* Vertikale Zentrierung */
		min-height: 100vh; /* Mindestens die volle Höhe des Viewports */
		padding: 20px; /* Genügend Abstand für den Inhalt */
		box-sizing: border-box; /* Damit Padding in die Gesamtgröße einfließt */
		text-align: center;
		max-width: 100%;
		margin: 0 auto;
		background-color: #f9f9f9;
		border-radius: 15px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	/* Das Bild innerhalb der Lavylites-Sektion zentrieren */
	.lavylites-image {
		width: 100%; /* Bild nimmt die gesamte Breite ein */
		max-width: 100%; /* Maximale Breite des Bildes (je nach Bedarf anpassen) */
		margin-bottom: 11px; /* Abstand zum Text */
	}

	/* Das Bild selbst anpassen */
	.lavylites-image img {
		width: 100%; /* Bild nimmt die ganze Breite der Container-Div ein */
		height: auto; /* Höhe wird automatisch angepasst, um das Seitenverhältnis zu bewahren */
	}

	/* Der Text in der Lavylites-Sektion */
	.lavylites-text {
		font-size: 1.1em;
		text-align: center; /* Text wird zentriert */
		max-width: 100%; /* Maximale Textbreite (optional, je nach Layout) */
		margin-bottom: 11px; /* Abstand zum nächsten Abschnitt */
	}

	/* Links unterhalb des Textes */
	.lavylites-links {
		width: 90%; /* Der Bereich für die Links wird 90% der Breite einnehmen */
		max-width: 100%; /* Maximale Breite für den Linksbereich */
		margin: 0 auto; /* Zentriert den Links-Bereich */
		text-align: center; /* Zentriert die Links */
	}

	/* Links selbst anpassen */
	.lavylites-links a {
		font-size: 1.1em; /* Schriftgröße */
		display: block; /* Links werden untereinander angezeigt */
		margin-bottom: 11px; /* Abstand zwischen den Links */
		text-decoration: none; /* Entfernt die Standard-Unterstreichung der Links */
	}
	
		/* Links unterhalb des Textes */
	.lavylites-links-gross {
		width: 90%; /* Der Bereich für die Links wird 90% der Breite einnehmen */
		max-width: 100%; /* Maximale Breite für den Linksbereich */
		margin: 0 auto; /* Zentriert den Links-Bereich */
		text-align: center; /* Zentriert die Links */
	}

	/* Links selbst anpassen */
	.lavylites-links-gross a {
		font-size: 1.5em; /* Schriftgröße */
		display: block; /* Links werden untereinander angezeigt */
		margin-bottom: 11px; /* Abstand zwischen den Links */
		text-decoration: none; /* Entfernt die Standard-Unterstreichung der Links */
	}
	
	
	

/* Mobile Ansicht Anpassungen */
@media (max-width: 768px) {
	
	/* Zentrierte Ausrichtung für mobile Geräte */
	.lavylites-section {
		padding: 20px; /* Mehr Abstand, damit der Inhalt nicht zu nah an den Rändern ist */
	}

	/* Reduziert die Bildgröße auf kleineren Geräten */
	.lavylites-image img {
		width: 100%; /* Bild auf die volle Breite der mobilen Ansicht anpassen */
		margin-bottom: 11px; /* Genügend Abstand zwischen Bild und Text */
		max-width: 100%; /* Bild nimmt 100% der Breite ein */
	}

	/* Textgröße für die mobile Ansicht anpassen */
	.lavylites-text {
		font-size: 1.1em; /* Etwas größere Schrift für bessere Lesbarkeit */
		margin-bottom: 11px; /* Abstand nach unten zum nächsten Element */
		max-width: 100%;
		margin: 0 auto; /* Zentriert den Container */
		padding: 20px;
		background-color: #f0f8ff;
		border-radius: 15px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		text-align: center; /* Zentriert den Text */
		box-sizing: border-box; /* Sorgt dafür, dass Padding in die Gesamtgröße eingerechnet wird */
	}

	/* Links anpassen für kleinere Bildschirme */
	.lavylites-links a {
		font-size: 1.1em; /* Erhöhte Schriftgröße für Links auf mobilen Geräten */
		display: block; /* Macht die Links block-level, damit sie untereinander angezeigt werden */
		margin-bottom: 11px; /* Abstand zwischen den Links */
	}

	/* Verhindert, dass der Text oder Links zu nah an den Rändern sind */
	.lavylites-links {
		width: 90%; /* Text- und Link-Bereich auf 90% der Bildschirmbreite */
		margin: 0 auto; /* Zentriert die Links */
	}

	/* Verhindert, dass die Überschrift das Bild überdeckt */
	.lavylites h2 {
		text-align: center; /* Zentriert den Text */
		margin-top: 11px; /* Fügt Abstand zwischen dem oberen Rand und der Überschrift hinzu */
	}
}










/* Ausbildungen */
/* Container für Trainingseinheit */
.training-container {
    display: flex; /* Flexbox für nebeneinander angeordnete Elemente */
    align-items: center; /* Vertikale Zentrierung */
    justify-content: space-between; /* Abstand zwischen Text und Bild */
    gap: 20px; /* Abstand zwischen Text und Bild */
    padding: 20px; /* Innenabstand des Containers */
    margin-bottom: 11px; /* Abstand zwischen den Containern */
    box-sizing: border-box; /* Padding in die Gesamtgröße einbeziehen */
}

/* Textbereich */
.training-text-image {
    flex: 1; /* Text nimmt den verbleibenden Platz ein */
    font-size: 1.2em; /* Größere Schriftgröße */
    line-height: 1.5; /* Angenehmer Zeilenabstand */
    background-color: #f9f9f9; /* Sanfter Hintergrund */
    padding: 20px; /* Innenabstand für Textbox */
    border-radius: 15px; /* Abgerundete Ecken */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Schatten für Dimension */
    box-sizing: border-box; /* Padding in die Gesamtgröße einbeziehen */
    text-align: left; /* Text linksbündig */
}

/* Bildbereich */
.training-image {
    max-width: 40%; /* Bild nimmt maximal 40% der Breite ein */
    height: auto; /* Höhe passt sich proportional an */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten für das Bild */
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .training-container {
        flex-direction: column; /* Bild und Text untereinander anordnen */
        align-items: center; /* Zentrieren der Inhalte */
        gap: 10px; /* Weniger Abstand zwischen den Elementen */
    }

    .training-image {
        max-width: 100%; /* Bild füllt die gesamte Breite aus */
    }

    .training-text-image {
        font-size: 1em; /* Kleinere Schriftgröße für Mobilgeräte */
        text-align: center; /* Text zentrieren für mobile Ansicht */
    }
}






/* Heilbehandlung */
/* Bild in Heilbehandlung anpassen */
.services-image {
    max-width: 100%; /* Bild nimmt die volle Breite des Containers ein */
    height: auto; /* Höhe automatisch anpassen, um das Seitenverhältnis beizubehalten */
    border-radius: 10px;
    margin-bottom: 11px; /* Abstand zum Text */
}

/* Buttons Heilbehandlung */
.button-container {
    margin-top: 11px;
    text-align: center; /* Zentriert die Buttons */
}

/* Preisboxen */
.price-box {
    font-size: 1.2em;
    font-weight: bold;
    margin: 11px 0;
}

/* Mobile Ansicht Anpassungen */
@media (max-width: 768px) {
    /* Bild und Text in der mobilen Ansicht zentrieren */
    .services-image {
        margin-bottom: 11px; /* Weniger Abstand zum Text */
        max-width: 100%; /* Bild nimmt 90% der Breite ein */
    }
}


/* --- Human Design Reading Styling --- */
.container {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}
.container h1 {
  font-size: 28px;
  color: #4ca7e6;
}
.container h2 {
  color: #4ca7e6;
  margin-top: 40px;
}
.container .section {
  margin-top: 20px;
}
.container .button {
  display: inline-block;
  background-color: #4ca7e6;
  color: white;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
}
.container .testimonial {
  background-color: #f0f7fa;
  padding: 20px 30px;
  border-left: 4px solid #4ca7e6;
  border-radius: 8px;
  margin-top: 40px;
}
.container .testimonial p {
  margin: 0;
}
.container .footer {
  margin-top: 60px;
  font-size: 13px;
  color: #777;
  text-align: center;
}


/* --- Dankeseite Styling --- */
.container {
  max-width: 700px;
  margin: 11px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.container h1 {
  color: #4ca7e6;
}
.container .info {
  background: #eaf4f9;
  padding: 15px 20px;
  border-left: 4px solid #4ca7e6;
  margin: 11px 0;
}
.container .button {
  display: inline-block;
  background: #4ca7e6;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 11px;
}
.container .footer {
  margin-top: 11px;
  font-size: 13px;
  color: #777;
}

.erleben-container {
  text-align: center;
  margin: 11px auto;
  padding: 30px 20px;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

.erleben-container h2 {
  color: #00BFFF;
  font-family: 'Georgia', serif;
  margin-bottom: 11px;
}

.erleben-container p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 11px;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 11px;
}

.youtube-link img {
  width: 50px;
  margin-right: 11px;
}

.youtube-link span {
  font-size: 1.1em;
  color: #cc0000;
}

.trustpilot-link {
  display: inline-block;
  font-size: 1.1em;
  color: #007ACC;
  text-decoration: none;
  margin-top: 11px;
}

.trustpilot-link:hover {
  text-decoration: underline;
}
