/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Aktuelle Farben der Website (bereinigt) */
    --accent-color: #a29a88;           /* Warmes Beige - Hauptakzent */
    --text-dark: #000000;              /* Schwarz - Alle Texte */
    --text-light: #6C757D;             /* Grau - Sekundärtexte */
    --white: #FFFFFF;                  /* Weiß */
    --light-bg: #F8F9FA;              /* Heller Hintergrund */
    --hero-bg: #f4f7f4;               /* Hero-Hintergrund */
    --border-color: #E9ECEF;          /* Rahmenfarben */
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Josefin Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Josefin Sans', sans-serif;
    color: #000000;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Josefin Sans', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #8f8775;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    padding: 0.75rem 0;
}

/* Logo-spezifische Anpassungen */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    min-height: 80px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}/* Mobile Navigation */
.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 2rem 2rem 2rem;
    margin-top: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 247, 244, 0.3);
    z-index: 0;
}

.hero-container {
    position: relative;
    border: 4px solid #a29a88;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    background-color: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #000000;
}

.hero-title {
    color: #000000;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

/* Services Section - Reduzierter oberer Abstand */
.services {
    padding: 60px 0 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

.about-credentials {
    margin-top: 2rem;
}

/* Spezielle Styles für Qualifikationen unter dem Bild */
.about-image .about-credentials {
    margin-top: 1.5rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #a29a88;
}

.about-credentials h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Josefin Sans', sans-serif;
}

.about-credentials ul {
    list-style: none;
    padding: 0;
}

.about-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.about-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a29a88;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: var(--section-padding);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #a29a88;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(162, 154, 136, 0.3);
    border-color: #968a78;
    background-color: #fefefe;
}

.service-card:hover .service-icon {
    background-color: #968a78;
    transform: scale(1.1);
}

.service-card:hover .service-title {
    color: #a29a88;
}

.service-card:hover .service-features {
    color: #a29a88;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-icon img {
    width: 60px;
    height: 60px;
    filter: contrast(1.8) brightness(0.6) drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

.service-title {
    font-family: 'Josefin Sans', sans-serif;
    color: #000000;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-description {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-features {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    list-style: none;
    text-align: left;
    transition: color 0.3s ease;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Approach Section */
.approach {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.approach-box {
    background-color: transparent;
    border: 4px solid #a29a88;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.approach-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
}

.approach-box p:last-child {
    margin-bottom: 0;
}

/* Coaching Info Section */
.coaching-info {
    padding: var(--section-padding);
    padding-top: calc(var(--section-padding) + 2rem);
    background-color: var(--light-bg);
    background-image: url('./images/psychodrama-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.coaching-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 249, 250, 0.55);
    z-index: 1;
}

.coaching-info .container {
    position: relative;
    z-index: 2;
}

.coaching-title-box {
    background-color: transparent;
    border: 4px solid #a29a88;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 0 auto 3rem;
    max-width: 500px;
    text-align: center;
}

.coaching-title-box .section-title {
    margin: 0;
}

.coaching-content {
    max-width: 900px;
    margin: 0 auto;
}

.coaching-text {
    margin-bottom: 3rem;
}

.coaching-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
}

.coaching-disclaimer {
    background-color: #a29a88;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #a29a88;
    box-shadow: var(--shadow-light);
}

.coaching-disclaimer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #000000;
}

.coaching-disclaimer strong {
    color: #000000;
}

/* Klangmassage Section */
.klangmassage {
    padding: var(--section-padding);
    background-image: url('images/klangschalen-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.klangmassage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.klangmassage > * {
    position: relative;
    z-index: 2;
}

.klangmassage-details {
    margin-top: 3rem;
}

.klangmassage-details h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #000000;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.klangmassage-details h3:first-child {
    margin-top: 0;
}

.klangmassage-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
}

.klangmassage-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
}

.klangmassage .coaching-title-box {
    max-width: 500px;
    padding: 1.5rem 2rem;
}

.klangmassage-pricing {
    background-color: #a29a88;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #a29a88;
}

.klangmassage-pricing p {
    margin: 0 !important;
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.klangmassage-pricing strong {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--light-bg);
    background-image: url('./images/kontakt-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 249, 250, 0.55);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    order: 1;
}

.contact-form {
    order: 2;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #000000;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: #a29a88;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-icon:hover {
    background-color: #8f8775;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(162, 154, 136, 0.3);
}

/* Spezielle Styles für klickbare Kontakt-Icons */
.contact-icon-email {
    position: relative;
}

.contact-icon-email:hover {
    background-color: #8f8775;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 25px rgba(162, 154, 136, 0.4);
}

.contact-icon-email:active {
    transform: translateY(-1px) scale(1.05);
}

.contact-icon-email::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #ea4335;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon-email:hover::after {
    opacity: 1;
}

/* Telefon-Icon (Grüner Punkt) */
.contact-icon-phone {
    position: relative;
}

.contact-icon-phone:hover {
    background-color: #8f8775;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 25px rgba(162, 154, 136, 0.4);
}

.contact-icon-phone:active {
    transform: translateY(-1px) scale(1.05);
}

.contact-icon-phone::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #34a853;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon-phone:hover::after {
    opacity: 1;
}

/* Fax-Icon (Gelber Punkt) */
.contact-icon-fax {
    position: relative;
}

.contact-icon-fax:hover {
    background-color: #8f8775;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 25px rgba(162, 154, 136, 0.4);
}

.contact-icon-fax:active {
    transform: translateY(-1px) scale(1.05);
}

.contact-icon-fax::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #fbbc04;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon-fax:hover::after {
    opacity: 1;
}

/* Spezielle Styles für klickbaren Standort-Icon */
.contact-icon-location {
    position: relative;
}

.contact-icon-location:hover {
    background-color: #8f8775;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 25px rgba(162, 154, 136, 0.4);
}

.contact-icon-location:active {
    transform: translateY(-1px) scale(1.05);
}

.contact-icon-location::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #4285f4;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon-location:hover::after {
    opacity: 1;
}

/* Spezielle Styles für Fax-Icon */
.contact-icon-fax {
    position: relative;
}

.contact-icon-fax:hover {
    background-color: #8f8775;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(162, 154, 136, 0.3);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #000000;
}

.contact-item p {
    margin: 0;
    color: #000000;
}

/* Contact Form */

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(162, 154, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot (hidden spam protection) */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Messages */
.form-messages {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    display: none;
}

.form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Social Media Section */
.social-media {
    padding: var(--section-padding);
    background-color: var(--white);
    /* Anker-Offset für fixed header - Mobile & Desktop */
    scroll-margin-top: 120px;
    padding-top: calc(var(--section-padding) + 40px);
    /* Größerer Abstand zum Footer */
    margin-bottom: 5rem;
    margin-top: 4rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.social-card {
    background-color: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    background-color: #8f8775;
    transform: scale(1.1);
}

.social-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
}

.social-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.social-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
}

.social-subtitle {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 2rem;
    font-family: 'Montserrat', sans-serif;
}

/* Social Media Mobile Anpassungen */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
    }
}


    background-color: #FFFFFF;
    color: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #E9ECEF;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(162, 154, 136, 0.3);
    border-radius: 6px;
    background-color: rgba(162, 154, 136, 0.1);
}

.footer-links a:hover {
    color: #FFFFFF;
    background-color: #a29a88;
    border-color: #a29a88;
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(162, 154, 136, 0.3);
}

.footer-bottom p {
    margin: 0;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    /* Hero Mobile Anpassungen */
    .hero {
        min-height: 100vh;
        padding: 90px 1rem 1rem 1rem;
        background-position: center center;
        background-attachment: scroll; /* Wichtig für iOS */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        padding: 1.5rem;
        border-width: 2px;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    /* Bessere mobile Umbrüche für Hero-Titel */
    .hero-title {
        hyphens: manual;
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    /* Mobile Zeilenumbruch nur auf kleinen Bildschirmen */
    .mobile-break {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile Anpassung für Qualifikationen unter Bild */
    .about-image .about-credentials {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .about-image .about-credentials h3 {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Hero für sehr kleine Bildschirme */
    .hero {
        padding: 90px 0.5rem 1.5rem 0.5rem;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .header,
    .nav-hamburger,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 80px;
    background-color: var(--light-bg);
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.legal-content h1 {
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #a29a88;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.legal-section h4 {
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.legal-section p {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.legal-section a {
    color: #a29a88;
    text-decoration: none;
    word-break: break-all;
}

.legal-section a:hover {
    color: #8f8775;
    text-decoration: underline;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #a29a88;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-navigation .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Additional Styles for Better Legal Page Experience */
.legal-content strong {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-weight: 600;
}

.legal-section p + h3,
.legal-section p + h4 {
    margin-top: 2rem;
}

/* Print styles for legal pages */
@media print {
    .legal-page {
        padding: 0;
        background: white;
    }
    
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
    
    .legal-navigation {
        display: none;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
    
    .legal-section h2 {
        page-break-before: auto;
        page-break-after: avoid;
    }
}

/* Scroll behavior for legal pages */
.legal-content {
    scroll-behavior: smooth;
}

/* Accessibility improvements for legal pages */
.legal-content h2:focus,
.legal-content h3:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Table of contents styling (optional) */
.legal-toc {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.legal-toc h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.legal-toc li {
    margin-bottom: 0.5rem;
}

.legal-toc a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.25rem 0;
    display: block;
    transition: var(--transition);
}

.legal-toc a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

/* Hero-spezifische Button-Stile */
.hero .btn-primary {
    background-color: #a29a88;
    color: #000000;
    border: 2px solid #a29a88;
}

.hero .btn-primary:hover {
    background-color: #8f8775;
    border-color: #8f8775;
    color: #000000;
    transform: translateY(-2px);
}

.hero .btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.hero .btn-secondary:hover {
    background-color: #000000;
    color: #f4f7f4;
}
/* Mobile Hero Anpassungen */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .logo {
        height: 55px;
        max-width: 220px;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
}
.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
}
/* Unterschrift Styling */
.about-signature {
    text-align: right;
    margin: 1.5rem 0 2.5rem 0;
    padding: 1rem 0 0 0;
}

.signature-img {
    height: 120px;
    width: auto;
    max-width: 350px;
    opacity: 0.85;
    filter: contrast(1.2);
}

/* Responsive Anpassungen für Unterschrift */
@media (max-width: 768px) {
    .signature-img {
        height: 90px;
        max-width: 280px;
    }
    
    .about-signature {
        margin: 0.5rem 0 1.5rem 0;
        padding: 0.5rem 0;
    }
}

/* Zusätzliche Anpassungen für sehr kleine Bildschirme */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0.5rem 0.5rem 0.5rem;
    }
    
    .hero-container {
        padding: 1.2rem 1rem;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 1.4rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    /* Mobile Zeilenumbruch aktivieren */
    .mobile-break {
        display: inline;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Kontakt-spezifische Button-Stile */
.contact .btn-primary {
    background-color: #a29a88;
    color: #000000;
    border: 2px solid #a29a88;
}

.contact .btn-primary:hover {
    background-color: #8f8775;
    border-color: #8f8775;
    color: #000000;
    transform: translateY(-2px);
}

/* Kontakt-Info-Box */
.contact-info-box {
    background-color: #a29a88;
    border: 4px solid #a29a88;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.contact-info-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box strong {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-box .praxis-info {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Legal-Page Button-Stile (passend zur Hauptseite) */
.legal-page .btn-primary {
    background-color: #a29a88;
    color: #000000;
    border: 2px solid #a29a88;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.legal-page .btn-primary:hover {
    background-color: #8f8775;
    border-color: #8f8775;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(162, 154, 136, 0.3);
}

.legal-page .btn-outline {
    background-color: transparent;
    color: #a29a88;
    border: 2px solid #a29a88;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hero Section with Profile Image */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-portrait {
    width: 280px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
    border: 4px solid #a29a88;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments for Hero */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-portrait {
        width: 200px;
        height: 230px;
        margin-top: 1rem;
        border-radius: 15px;
    }
    
    .hero-container {
        padding: 2rem;
    }
    
    .hero {
        padding: 100px 1rem 1rem 1rem;
    }
}

.legal-page .btn-outline:hover {
    background-color: #a29a88;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(162, 154, 136, 0.3);
}