:root {
    --primary-rosa: #f8a5c2;
    --secondary-rosa: #fddde6;
    --dark-rosa: #e75480;
    --text-color: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

@font-face {
    font-family: 'FreeStyle Script';
    src: url('fonts/FREESCPT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo-text {
    font-family: 'FreeStyle Script', cursive;
    font-size: 1.5em;
}

body {
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(45deg, #fff5f7, #fff);
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    padding-bottom: 2rem;
    background: var(--primary-rosa);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 70px;
    height: auto;
}

nav {
    display: flex;
    gap: 1rem;
    align-items: end;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0 1rem;
    position: relative;
    padding-bottom: 0.5rem; /* Space for underline */
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
    background: white;
    height: 3px;
}

/* Optional: Active state styling */
nav a.active {
    color: white;
    font-weight: 700;
    background: none;
    border-radius: 0;
}

nav a.active::after {
    width: 100%;
    background: white;
    height: 3px;
}

/* Hero Section - Reduzierter Abstand zur Navbar */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5rem; /* Reduziert von 9rem auf 3rem */
    background: linear-gradient(15deg, var(--secondary-rosa) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

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

.hero-text h1 {
    margin-bottom: 1.8rem;
    line-height: 1.3;
    width: 100%;
    max-width: 700px;
}

/* Fix for title line breaks */
.hero-text h1 br {
    display: none;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 60%;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    transition: transform var(--transition-medium);
}

.profile-frame {
    width: 320px; /* Oval: Breite */
    height: 420px; /* Oval: Höhe */
    overflow: hidden; /* Nur Ausschnitt sichtbar */
    border-radius: 60%; /* Ovaler Effekt */
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.profile-image-cropped {
    position: absolute;
    width: 440px; /* Bild größer als Frame = Zoom */
    height: auto;
    top: -50px; /* vertikal verschieben = Bildausschnitt festlegen */
    left: -55px; /* horizontal verschieben */
    transition: transform var(--transition-medium);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: var(--primary-rosa);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-rosa);
}

h1,
h3 {
    color: var(--dark-rosa);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

a.privacy-link {
    text-decoration: underline;
}

a {
    color: var(--dark-rosa);
    text-decoration: none;
    font-weight: 500;
}

.quote {
    font-family: 'FreeStyle Script', cursive;
    margin: 2rem auto;
    font-size: 3rem;
    max-width: 800px;
    color: var(--dark-rosa);
    position: relative;
    padding: 1rem;
}

.quote::before {
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--primary-rosa);
}

.quote::after {
    font-size: 3rem;
    position: absolute;
    bottom: -20px;
    right: 10px;
    color: var(--primary-rosa);
}

.acronym-section {
    margin-top: 2rem;
    padding: 2rem 1rem;
    background: white;
}

.acronym-name {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-rosa);
}

.letter-container {
    position: relative;
    display: inline-block;
}

.letter {
    font-family: 'FreeStyle Script', cursive;
    font-size: xx-large;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.letter:hover {
    transform: translateY(-5px);
    color: var(--primary-rosa);
}

.letter-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-rosa);
    color: #333;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: normal;
    min-width: 160px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.letter-container:hover .letter-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
    color: var(--dark-rosa);
}

.space {
    width: 2rem;
}

.button-container {
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.problem-section {
    padding: 6rem 1rem;
    background: linear-gradient(15deg, var(--secondary-rosa) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 228, 237, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.problem-list li {
    padding: 1.2rem 1.5rem;
    margin: 0.8rem 0;
    background: linear-gradient(to right, rgba(255, 240, 245, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 12px;
    border-left: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.problem-list li::before {
    content: '•';
    color: var(--primary-rosa);
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
    margin-top: -3px;
}

.problem-list li:hover {
    transform: translateX(10px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to right, rgba(255, 228, 237, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.problem-list li:hover::before {
    color: var(--dark-rosa);
}

/* Qualifikationen Styling - Jetzt wie Methoden */
.qualifications-section {
    padding: 2rem 2rem;
    padding-bottom: 4.5rem;
    background: linear-gradient(15deg, var(--secondary-rosa) 0%, #fff 100%);
}

.qualifications-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.qualification-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(248, 165, 194, 0.2);
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.qualification-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dark-rosa);
}

.qualification-icon {
    font-size: 2.5rem;
    color: var(--dark-rosa);
    margin-bottom: 1rem;
    display: block;
}

.qualification-card h2 {
    color: var(--dark-rosa);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-item {
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    background: rgba(248, 165, 194, 0.05);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 100%;
}

.qualification-item:hover {
    background: rgba(248, 165, 194, 0.1);
    padding-left: 1.5rem;
}

.qualification-item::before {
    content: '•';
    color: var(--dark-rosa);
    margin-right: 0.8rem;
    font-weight: bold;
}

.qualification-card .icon {
    font-size: 1.8rem;
    padding: 0.8rem;
}

.resilience-list li span {
    content: '✓';
    color: var(--dark-rosa);
    font-weight: bold;
}

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

.container {
    margin-top: 2rem;
}

.two-columns {
    grid-column: span 2;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.experience-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-rosa);
    border-radius: 10px;
}

.experience-item h3 {
    color: var(--dark-rosa);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-rosa);
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-button {
    grid-column: 2;
    justify-self: center; /* Zentriert innerhalb der Spalte */
    min-width: max-content;
    border: none;
    background: white;
    color: var(--dark-rosa);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button a {
    color: white;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-main {
    background: linear-gradient(15deg, var(--secondary-rosa) 0%, #fff 100%);
}

.contact-container {
    padding: 2rem;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    margin: 2rem auto;
}

.contact-section {
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-intro {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-rosa);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-rosa);
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 84, 128, 0.2);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    height: 1rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.required-hint {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.submit-btn {
    background: var(--dark-rosa);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    background: #d14272;
    transform: translateY(-2px);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.success input,
.form-group.success textarea {
    border-color: #2ecc71;
}

.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-rosa) 0%, #fff5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.about-container:hover {
    transform: translateY(-5px);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-container {
    position: relative;
}

.about-image.decorative {
    position: absolute;
    top: -30px;
    right: -50px;
    width: 100px;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-container {
        padding: 2rem;
        border-radius: 16px;
    }

    .about-text {
        font-size: 1rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-image {
        order: 2;
        margin-top: 1.5rem;
    }
    .hero-text {
        order: 1;
    }
    .hero-text .cta-button {
        display: none;
    }

    /* Hero padding für mobile noch weiter reduzieren */
    .hero {
        padding: 2rem 0 3rem;
    }
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.text-block h2 {
    color: var(--dark-rosa);
    margin-bottom: 1.5rem;
    text-align: left;
}

.text-block p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-block h3 {
    color: var(--primary-rosa);
    margin: 1.5rem 0;
}

.methods-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.method-card {
    padding: 1.5rem;
    background: var(--secondary-rosa);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card h4 {
    color: var(--dark-rosa);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.method-card .icon {
    font-size: 1.5rem;
}

.resilience-list {
    columns: 2;
    margin-top: 0.5rem;
    list-style-type: none;
}

.resilience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.resilience-list li:before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--dark-rosa);
}

.stressmanagement-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.stressmanagement-list li:before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--dark-rosa);
}

.honorar-section {
    padding: 2rem 1rem;
    background: linear-gradient(15deg, #fff 0%, var(--secondary-rosa) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: auto;
}

.honorar-table {
    width: 100%;
    max-width: 1200px;
    min-width: 300px;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin: 0 auto;
}

.honorar-table th,
.honorar-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    min-width: 150px;
}

.hinweis {
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto 0;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    padding: 0 1rem;
    box-sizing: border-box;
}

.methoden-section {
    padding: 4rem 2rem;
    background: var(--secondary-rosa);
}

.methoden-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.methoden-list {
    columns: 2;
    gap: 2rem;
    padding: 0;
    list-style: none;
}

.method-item {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.method-item::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--dark-rosa);
    font-size: 1.2em;
}

.sub-methoden {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.sub-methoden li {
    position: relative;
    padding: 0.3rem 0;
}

.sub-methoden li::before {
    content: '–';
    position: absolute;
    left: -1.2rem;
    color: var(--dark-rosa);
}

.sub-methoden.dashed li::before {
    content: '▬';
    font-size: 0.8em;
    top: 0.2rem;
}

.methods-section {
    padding: 2rem 2rem;
    padding-bottom: 4.5rem;
    background: linear-gradient(15deg, var(--secondary-rosa) 0%, #fff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--dark-rosa);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 84, 128, 0.3);
}

.methods-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(248, 165, 194, 0.2);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.method-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dark-rosa);
}

.method-icon {
    font-size: 2.5rem;
    color: var(--dark-rosa);
    margin-bottom: 1rem;
    display: block;
}

.method-list {
    list-style: none;
    padding: 0;
}

.method-list li {
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    background: rgba(248, 165, 194, 0.05);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 100%;
}

.method-list li:hover {
    background: rgba(248, 165, 194, 0.1);
    padding-left: 1.5rem;
}

.method-list li::before {
    content: '•';
    color: var(--dark-rosa);
    margin-right: 0.8rem;
    font-weight: bold;
}

.sub-methods {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.sub-methods li {
    background: none;
    padding: 0.3rem 0;
    font-size: 0.95em;
    color: var(--text-color);
}

.sub-methods li::before {
    content: '◦';
    color: var(--primary-rosa);
}

.highlight {
    color: var(--dark-rosa);
    font-weight: 600;
}

.method-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.main-footer {
    background: var(--dark-rosa);
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.angebote-section {
    padding: 2rem 0;
    background: linear-gradient(15deg, #fff 0%, var(--secondary-rosa) 100%);
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .angebote-grid {
        grid-template-columns: 1fr;
    }
}

.angebot-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 2px solid rgba(248, 165, 194, 0.1);
}

.angebot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.angebot-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dark-rosa);
}

.angebot-icon {
    font-size: 2.5rem;
    color: var(--dark-rosa);
    margin-bottom: 1rem;
    display: block;
}

.angebot-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.angebot-list {
    list-style: none;
    padding: 0;
}

.angebot-list li {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(248, 165, 194, 0.05);
    border-radius: 8px;
    position: relative;
    padding-left: 2rem;
    min-width: 100%;
}

.angebot-list li::before {
    content: '•';
    color: var(--dark-rosa);
    position: absolute;
    left: 0.8rem;
}

.angebot-card-large {
    grid-column: span 2;
}

.angebot-list-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.highlight-list li {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(248, 165, 194, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
    min-width: 100%;
}

.highlight-list.participation-mode {
    padding-left: 0;
}

.highlight-list.participation-mode li {
    font-size: larger;
    display: flex;
    align-items: center;
}

.highlight-list.participation-mode li::before {
    content: '';
}

.angebot-list-icon {
    display: flex;
    align-items: center;
    padding-right: 1rem;
}

.highlight-list li:hover {
    background: rgba(248, 165, 194, 0.1);
}

.highlight-card {
    border: 2px solid var(--dark-rosa);
    background: linear-gradient(45deg, #fff 0%, var(--secondary-rosa) 150%);
}

.modus-banner {
    grid-column: 1 / -1;
    background: var(--dark-rosa);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.modus-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modus-banner i {
    font-size: 3rem;
    color: white;
}

.modus-content {
    flex: 1;
}

.modus-optionen {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modus-option {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
}

.online {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-rosa);
}

.praesenz {
    background: var(--primary-rosa);
    color: white;
}

.angebot-card {
    margin-bottom: 3rem;
}

.angebot-card-two-cloumns {
    grid-column: span 2;
}

.portrait-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.profile-subline {
    font-size: 1.1rem;
    color: white;
    max-width: 600px;
    margin: 1rem auto;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--dark-rosa);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 18px;
    margin-top: 1rem;
    transition: transform 0.3s;
    margin-bottom: 4rem;
    font-size: larger;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--primary-rosa);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.client-name {
    color: var(--dark-rosa);
    margin-top: 1rem;
    font-style: italic;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.angebot-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.angebot-card:hover {
    transform: translateY(-5px);
}

.angebot-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-rosa);
}

.angebot-icon {
    font-size: 2rem;
    color: var(--primary-rosa);
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding-left: 1.5rem;
}

.highlight-list li {
    position: relative;
    margin: 0.8rem 0;
}

.highlight-list li::before {
    content: '•';
    color: var(--primary-rosa);
    position: absolute;
    left: -1.5rem;
}

.delivery-info {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-section {
    padding: 4rem 0;
    background: #fafafa;
    min-height: 70vh;
}

.legal-title {
    color: var(--dark-rosa);
    text-align: left;
    margin: 0 0 2rem 0;
    font-size: 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
    color: #444;
    text-align: justify;
    hyphens: auto;
    max-width: 1600px;
    margin: 0 auto;
}

.legal-subtitle {
    color: var(--dark-rosa);
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-rosa);
    width: fit-content;
}

.legal-subsubtitle {
    color: var(--primary-rosa);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-content ul {
    margin-left: 1.5rem;
    list-style: square;
    color: #666;
    padding-left: 1rem;
}

.legal-content ol {
    margin-left: 1.5rem;
    padding-left: 1rem;
}

.legal-content li {
    margin: 0.8rem 0;
    padding-left: 0.5rem;
}

.nav-toggle {
    display: block; /* Checkbox sichtbar machen */
    opacity: 0; /* Aber unsichtbar für das Auge */
    position: absolute;
    z-index: -1;
}

.nav-toggle-label {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    height: 35px;
    width: 35px;
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 25px;
    height: 2px;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    background: white;
    width: 25px;
    height: 2px;
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-7px);
}
.hamburger::after {
    transform: translateY(7px);
}

.nav-toggle:checked ~ .nav-toggle-label .hamburger {
    background: transparent;
}
.nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
    transform: rotate(45deg);
}
.nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
    transform: rotate(-45deg);
}

.contact-section-footer {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-rosa);
    color: white;
}

.contact-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--dark-rosa);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background: var(--dark-rosa);
    padding: 2rem;
    text-align: center;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 1s ease forwards;
}

.freescript {
    font-family: 'FreeStyle Script', cursive;
    font-size: 2.2rem;
    line-height: 1.3;
    display: block;
    color: var(--dark-rosa);
    margin-bottom: 0.5rem;
}

.freescript-small {
    font-family: 'FreeStyle Script', cursive;
    font-size: 1.5rem;
    line-height: 1.3;
    display: block;
    color: var(--dark-rosa);
}

.tide {
    display: inline-block;
    line-height: 1;
    justify-content: center;
}

/* ===== MOBILE MEDIA QUERIES ===== */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem 3rem; /* Seitliches Padding hinzugefügt */
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem; /* Vergrößert von 2rem auf 3rem */
    }

    .hero-text {
        order: 1;
        padding: 0 1.5rem; /* Zusätzliches seitliches Padding für den Text */
    }

    .hero-text h1 {
        margin-bottom: 2.5rem; /* Vergrößert von 1.8rem auf 2.5rem */
        padding: 0 0.5rem; /* Etwas seitliches Padding */
    }

    .tagline {
        margin-bottom: 3rem; /* Vergrößert von 2.5rem auf 3rem */
        padding: 0 1rem; /* Seitliches Padding für bessere Lesbarkeit */
    }

    .hero-image {
        order: 2;
        margin-top: 2rem;
    }

    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .header.header {
        min-height: 12vh;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .main-banner {
        padding: 2rem 1rem;
    }

    .content-container,
    li {
        max-width: fit-content;
    }

    .quote {
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    .quote::before,
    .quote::after {
        font-size: 2rem;
    }

    .acronym-name {
        font-size: 1.3rem;
        gap: 0.1rem;
    }

    .letter-tooltip {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .problem-section,
    .qualifications,
    .qualifications-section,
    .cta-section {
        padding: 2rem 1rem;
    }

    .problem-list,
    .qualification-card {
        padding: 1.5rem;
    }

    .qualifications-grid,
    .qualifications-container {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .experience-item h3 {
        font-size: 2rem;
    }

    .contact-section {
        padding: 0;
    }

    .contact-main {
        padding: 1.5rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .submit-btn {
        width: 100%;
    }

    .nav-toggle-label {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 5rem 1.5rem;
        z-index: 999;
    }

    .nav-toggle:checked ~ nav {
        right: 0;
    }

    nav a {
        display: block;
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    nav a:hover {
        background: var(--secondary-rosa);
    }

    .logo-img {
        position: absolute;
        left: 10px;
        padding-top: 0.5rem;
        padding-left: 1rem;
        display: block;
    }

    .logo-text {
        display: none;
    }

    .main-nav {
        background: linear-gradient(15deg, var(--secondary-rosa) 0%, #fff 100%);
        position: absolute;
        min-width: 100%;
        min-height: max-content;
        padding: 1em;
    }

    .main-nav a {
        font-size: 1.5rem;
        color: var(--dark-rosa);
        background-color: var(--secondary-rosa);
    }

    .about-section {
        padding: 2rem 1rem;
    }

    .text-block {
        padding: 1.5rem;
    }

    .methods-grid {
        display: block;
        gap: 1rem;
    }

    .method-columns {
        gap: 2;
    }

    .method-card.two-columns {
        width: 100%;
    }

    .method-card {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }

    .resilience-list {
        columns: 1;
    }

    .contact-section-footer {
        padding: 3rem 1rem;
    }

    .contact-button {
        padding: 0.8rem 2rem;
    }

    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .content-container > div {
        gap: 1rem;
    }

    .content-container > div > div {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .content-container h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .content-container p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .resilience-list {
        columns: 1 !important;
        font-size: 0.9rem;
    }

    .stressmanagement-list {
        font-size: 0.9rem;
    }

    .content-container .icon {
        font-size: 1.3rem;
    }

    .honorar-table th,
    .honorar-table td {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .package-list li {
        font-size: 0.8em;
    }

    .hinweis {
        padding: 0 0.5rem;
        font-size: 0.8rem;
    }

    .methoden-list {
        columns: 1;
    }

    .method-item {
        padding-left: 1.8rem;
        font-size: 0.95rem;
    }

    .sub-methoden {
        padding-left: 1rem;
    }

    .method-card {
        padding: 1.5rem;
    }

    .section-title span {
        font-size: 1.2rem;
    }

    .modus-banner {
        flex-direction: column;
        text-align: center;
    }

    .modus-optionen {
        flex-direction: column;
    }

    .qualifications-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .qualification-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .qualification-list li {
        padding-left: 2.5rem;
        min-width: 100%;
    }

    .qualification-list li::before {
        left: 1rem;
    }

    .angebote-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 0 2rem;
    }

    .angebot-card {
        grid-template-columns: 1fr;
    }

    .angebot-card-large {
        grid-column: span 1;
    }

    .angebot-list-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem 2rem; /* Seitliches Padding auch für sehr kleine Screens */
    }

    .hero-content {
        gap: 2.5rem; /* Angepasster Gap für sehr kleine Screens */
    }

    .hero-text {
        padding: 0 1rem; /* Reduziertes aber immer noch vorhandenes Padding */
    }

    .hero-text h1 {
        margin-bottom: 2rem; /* Angepasst für sehr kleine Screens */
        padding: 0 0.5rem;
        line-height: 1.4; /* Verbesserte Zeilenhöhe für mobile */
    }

    .tagline {
        margin-bottom: 2.5rem;
        padding: 0 0.8rem;
        font-size: 1.2rem; /* Etwas kleinere Schrift für sehr kleine Screens */
        line-height: 1.4;
    }

    .hero-image {
        margin-top: 1.5rem;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .main-banner::after {
        height: 50px;
        bottom: -25px;
    }

    .space {
        max-width: 0;
    }

    .acronym-name {
        justify-content: center;
        flex-wrap: wrap;
    }

    .name {
        text-align: center;
        margin: 0;
        padding: 0;
    }

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

    .letter {
        font-size: 1.5rem; /* adjust if needed for small screens */
    }

    .letter-tooltip {
        font-size: 0.7rem;
        white-space: normal;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-item h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }

    .text-block {
        padding: 1.2rem;
    }

    .method-card h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .method-columns {
        gap: 0;
    }
    .contact-section-footer {
        padding: 2rem 1rem;
    }

    .content-container > div {
        gap: 0.5rem;
    }

    .content-container h4 {
        font-size: 1rem;
    }

    .resilience-list li,
    .stressmanagement-list li {
        line-height: 1.3;
        padding: 0.2rem 0;
    }

    .honorar-table th,
    .honorar-table td {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .honorar-table {
        border-radius: 8px;
    }

    .qualification-hero h1 {
        font-size: 2rem;
    }

    .qualification-card h2 {
        font-size: 1.4rem;
    }

    .angebot-card-two-cloumns {
        grid-column: span 1;
    }

    /* Hero padding für sehr kleine Screens weiter reduzieren */
    .hero {
        padding: 1.5rem 0 2rem;
    }
}

/* Hamburger Menu for screen widths up to 1200px */
@media (max-width: 1200px) {
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1001;
        cursor: pointer;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        display: block;
        position: absolute;
        width: 2rem;
        height: 3px;
        background: var(--secondary-rosa);
        transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        left: 0;
    }

    .hamburger::before {
        transform: translateY(-7px);
    }

    .hamburger::after {
        transform: translateY(7px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%; /* Increased width for better usability */
        height: 100vh;
        background: linear-gradient(15deg, var(--secondary-rosa) 0%, #fff 100%);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 6rem 2rem;
        overflow-y: auto;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-toggle:checked ~ .main-nav {
        right: 0;
    }

    .nav-toggle:checked ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
        transform: rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
        transform: rotate(-45deg);
    }

    .main-nav a {
        display: block;
        padding: 1.2rem;
        margin: 0.8rem 0;
        color: var(--dark-rosa);
        background: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        font-size: 1.1rem;
        text-align: center;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .main-nav a:hover {
        background: var(--primary-rosa);
        color: white;
        transform: translateX(-5px);
    }

    /* Hide regular nav on small screens */
    .header > nav:not(.main-nav) {
        display: none;
    }
}

:root {
    --primary-rosa: #ba0178; /* Violett für Überschriften */
    --secondary-rosa: #e9ceeb; /* Helleres Violett für Hintergründe */
    --dark-rosa: #aa3288; /* Dunkles Violett für Footer/Kontakt */
    --text-color: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

@font-face {
    font-family: 'FreeStyle Script';
    src: url('fonts/FREESCPT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo-text {
    font-family: 'FreeStyle Script', cursive;
    font-size: 1.5em;
    color: white;
}

body {
    line-height: 1.7;
    color: var(--text-color);
    background: white;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    padding-bottom: 2rem;
    background: var(--dark-rosa);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
    background: white;
    height: 3px;
}

/* Optional: Active state styling */
nav a.active {
    color: white;
    font-weight: 700;
    background: none;
    border-radius: 0;
}

nav a.active::after {
    width: 100%;
    background: white;
    height: 3px;
}
