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

/* Mobile Viewport Fix */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Root Variables */
:root {
    --primary-bg: #deccae;
    --accent-color: #8ba8ab;
    --text-color: #444;
    --white: #ffffff;
    --light-bg: #f8f6f3;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Questrial', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Dancing Script Blue Text */
.dancing-script-blue {
    font-family: var(--font-script);
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.3;
}

/* Größere Variante für die ersten beiden Texte */
.dancing-script-blue.larger {
    font-size: 2.2rem;
}

/* Sehr große Variante für den letzten Text */
.dancing-script-blue.extra-large {
    font-size: 3.5rem;
}

/* Reduzierter Abstand für SoulKey-Sektion */
#soulkey .section-header {
    margin-bottom: 2rem;
}

/* Section Header mit Porträt */
.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.header-content {
    flex: 1;
}

.header-portrait {
    flex-shrink: 0;
    width: 200px;
    height: 280px;
}

.header-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 4px solid rgba(255,255,255,0.9);
}

/* Hero Portrait */
.hero-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    flex: 2;
}

.hero-portrait {
    flex: 1;
    text-align: center;
}

.hero-img {
    width: 240px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 4px solid rgba(255,255,255,0.9);
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: none;
    border: 2px solid #8ba8ab;
    color: #8ba8ab;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Questrial', sans-serif;
}

.lang-btn:hover {
    background: #8ba8ab;
    color: white;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #8ba8ab;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 168, 171, 0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.brand-icon {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Sections */
.section {
    padding: 10rem 0;
}

.section.alt-bg {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(139, 168, 171, 0.1) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-bg), var(--accent-color));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Spezifische Striche für verschiedene Sektionen */
.title-decoration.blue {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-bg));
}

.title-decoration.beige {
    background: linear-gradient(90deg, var(--primary-bg), var(--accent-color));
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.92) 0%, rgba(222, 204, 174, 0.16) 100%),
        url('Design ohne Titel.zip - 14.png');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text-hierarchy {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-main-title {
    margin-bottom: 1.5rem;
}

.hero-main-title .emotional-intro {
    font-family: var(--font-script);
    font-size: 4rem;
    font-weight: 500;
    color: #8ba8ab;
    display: block;
    text-shadow: 0 2px 4px rgba(139, 168, 171, 0.3);
    transform: rotate(-1deg);
    margin-bottom: 0;
}

.hero-secondary-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-statement {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 2.5rem;
    margin-bottom: 0;
    white-space: normal;
}

/* Desktop: größere Schrift für hero-statement */
.hero-statement {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: center;
    margin: 2.5rem auto 2rem auto;
    max-width: 600px;
}

/* Desktop: hero-quote wieder wie vorher */
.hero-quote {
    font-size: 1.1rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
    color: #6b6b6b;
    font-style: normal;
    background: none;
    border: none;
    box-shadow: none;
}

.hero-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.hero-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-color);
    position: absolute;
    bottom: -30px;
    right: 20px;
    opacity: 0.3;
}

/* Services Preview */
.services-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    transform: scale(1.02);
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(222, 204, 174, 0.1));
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.featured-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
    text-align: center;
    font-family: var(--font-heading);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-card p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.btn-more {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2.2rem;
    font-size: 1.13rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 rgba(182,199,189,0.10);
    letter-spacing: 0.01em;
}

.btn-more:hover {
    background: var(--primary-bg);
    color: var(--text-color);
}

/* Content Grid */
.content-grid {
    display: block;
    max-width: 100%;
}

.content-grid.reverse {
    direction: ltr;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    overflow: hidden; /* Ensures proper text flow around floating images */
}

.content-text h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.content-text h3:first-child {
    margin-top: 0;
}

.section-img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    display: block;
}

.section-img.float-left {
    float: left;
    margin: 1rem 2rem 1rem 0;
    width: 300px;
    height: 200px;
}

.section-img.float-right {
    float: right;
    margin: 1rem 0 1rem 2rem;
    width: 300px;
    height: 200px;
    max-width: 45%;
}

.section-img.center {
    margin: 2rem auto;
    display: block;
}

/* Clear floats */
.content-text::after {
    content: "";
    display: table;
    clear: both;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin: 4rem 0;
}

.feature-list li {
    padding: 1.2rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(139, 168, 171, 0.15);
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Pricing */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.price-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.price-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

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

.price-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.price-special {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-bg), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* SoulKey Info */
.soulkey-info {
    margin-top: 3rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(222, 204, 174, 0.2), rgba(139, 168, 171, 0.2));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.info-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.values {
    margin-top: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem auto 3.5rem auto;
    padding: 2rem 3rem;
    background: #f8f6f3;
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.important-note {
    background: rgba(222, 204, 174, 0.3);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.important-note h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-flex {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1 1 340px;
    min-width: 320px;
    max-width: 450px;
}

.contact-image-wrapper {
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-img {
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    object-fit: cover;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(139, 168, 171, 0.3);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 168, 171, 0.2);
}

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

.btn-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #deccae;
    padding: 2.5rem 0 1.2rem 0;
    margin-top: 0;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    font-family: var(--font-heading, 'DM Serif Display', serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-flower {
    font-size: 2.3rem;
    margin-right: 0.5rem;
}
.footer-name {
    font-size: 1.3rem;
}
@media (max-width: 600px) {
    .footer-name {
        font-size: 1rem;
    }
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.footer-icon {
    color: #8ba8ab;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-icon:hover {
    color: #e8b4b8;
    opacity: 1;
    transform: scale(1.18);
}
.footer-text {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
@media (max-width: 600px) {
    .footer-brand {
        flex-direction: column;
        font-size: 1.3rem;
        gap: 0.5rem;
    }
    .footer-flower {
        font-size: 1.5rem;
    }
    .footer-name {
        font-size: 1.2rem;
    }
    .footer-social {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-icon svg {
        width: 22px;
        height: 22px;
    }
    .footer-text {
        font-size: 0.95rem;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Grundlegende Mobile Fixes */
    * {
        box-sizing: border-box;
    }
    
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(139, 168, 171, 0.2);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hero Section Mobile Optimierung - Eleganter */
    .hero {
        padding: 5rem 0 3rem 0;
    }
    
    .hero-text-hierarchy {
        margin-bottom: 1.5rem;
    }
    
    .hero-main-title .emotional-intro {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-secondary-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    /* Grid-Layouts eleganter */
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .content-text {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0 0.5rem;
    }
    
    /* Service Cards eleganter */
    .services-preview {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
        margin-top: 2rem;
        width: 100% !important;
        max-width: 100% !important;
        display: grid;
    }
    
    .service-card {
        padding: 1.2rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .service-card.featured {
        order: -1;
        background: linear-gradient(135deg, rgba(222, 204, 174, 0.15), rgba(222, 204, 174, 0.25));
        border: 2px solid rgba(222, 204, 174, 0.3);
    }
    
    /* Pricing eleganter */
    .pricing-options {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1.2rem;
        display: grid;
    }
    
    .price-card.featured {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile-specific improvements - Eleganter */
    .hero-quote {
        font-size: 1rem;
        padding: 1.2rem;
        margin: 1.5rem auto;
        max-width: 90%;
        border-radius: 12px;
        background: rgba(248, 246, 243, 0.8);
    }
    
    .hero-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-img {
        width: 180px;
        height: 220px;
        border-radius: 16px;
    }
    
    .hero-quote::before,
    .hero-quote::after {
        font-size: 1.6rem;
    }
    
    /* Bilder eleganter */
    .section-img {
        max-width: 100%;
        width: 100%;
        height: 200px;
        margin: 1rem auto;
        display: block;
        border-radius: 12px;
        object-fit: cover;
    }

    .section-img.float-left,
    .section-img.float-right {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 200px;
        margin: 1rem auto;
        display: block;
        border-radius: 12px;
    }

    /* Price Cards eleganter */
    .price-card {
        padding: 1.2rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .price {
        font-size: 1.8rem;
    }
    
    /* Buttons eleganter */
    .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Feature Lists eleganter */
    .feature-list li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
        line-height: 1.5;
        border-bottom: 1px solid rgba(139, 168, 171, 0.1);
    }

    .info-card {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-img {
        height: 250px;
        border-radius: 12px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Info Boxes eleganter */
    .info-boxes {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
        width: 100% !important;
        max-width: 100% !important;
        display: grid;
        margin: 2rem 0;
    }
    
    .info-box {
        padding: 1.2rem;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .info-box h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    /* Section Headers eleganter */
    .section-header {
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-portrait {
        width: 140px;
        height: 200px;
        order: -1;
    }
    
    .header-portrait img {
        border-radius: 16px;
    }
    
    /* Typography eleganter */
    .content-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    
    .content-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    /* Dancing Script eleganter */
    .dancing-script-blue.larger {
        font-size: 1.8rem;
    }
    
    .dancing-script-blue.extra-large {
        font-size: 2.5rem;
    }
    
    /* SoulKey List Box eleganter */
    .soulkey-list-box {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
        margin: 2rem 0;
    }
    
    .soulkey-list-box ul.feature-list li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(139, 168, 171, 0.1);
    }
    
    /* Side Quote eleganter */
    .side-quote {
        font-size: 1rem;
        padding: 0.2rem 0 0.2rem 1rem;
        margin: 2rem 0;
        border-left-width: 3px;
        border-radius: 0 8px 8px 0;
    }
    
    /* Form eleganter */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid rgba(139, 168, 171, 0.3);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(139, 168, 171, 0.1);
    }
    
    /* Hamburger Menu eleganter */
    .hamburger {
        padding: 6px;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        border-radius: 1px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 5rem 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(222, 204, 174, 0.1));
    border: 2px solid rgba(222, 204, 174, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(222, 204, 174, 0.5);
}

.info-box h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: center;
}

.info-box .feature-list {
    margin: 0;
}

.info-box .feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(139, 168, 171, 0.1);
    line-height: 1.6;
}

.section.alt-bg#werte {
    padding-left: 0;
    padding-right: 0;
}

#werte .section-header {
    width: 100%;
    max-width: none;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 5vw;
    padding-right: 5vw;
}

#werte .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin: 0 auto 4rem auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    justify-items: center;
}

#werte .value-item {
    width: 100%;
    max-width: 340px;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-image-wrapper {
        margin-top: 2rem;
    }
}

.contact-form-title {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.btn-large {
    font-size: 1.15rem;
    padding: 1.1rem 2.5rem;
}

.btn-center {
    display: block;
    margin: 2rem auto 0 auto;
    min-width: 220px;
    text-align: center;
}

/* Werte-Boxen für "Wofür ich als Seelenflüsterin stehe" */
.about-values {
    margin: 1rem 0 0 0;
}
.about-values-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}
.about-values-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.about-value-item {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(182,199,189,0.18);
    padding: 1.2rem 1rem 1rem 1rem;
    flex: 1 1 260px;
    max-width: 260px;
    min-width: 160px;
    text-align: center;
    transition: box-shadow 0.3s;
    border: 1.5px solid #e6e6e6;
}
.about-value-item:hover {
    box-shadow: 0 8px 32px 0 rgba(182,199,189,0.18);
    border-color: var(--accent-color);
}
.value-icon {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    display: block;
}
.about-value-item h4 {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0.5rem;
    opacity: 1;
}
.about-value-item p {
    font-size: 0.92rem;
    color: #222;
    opacity: 1;
}
@media (max-width: 900px) {
    .about-values-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .about-value-item {
        max-width: 100%;
        min-width: 0;
    }
}

.info-box.special {
    background: #f8f6f3;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2rem 0 2.5rem 0;
    font-size: 1.25rem;
    color: #444;
    box-shadow: 0 2px 12px 0 rgba(182,199,189,0.10);
    text-align: center;
    font-weight: 500;
}

.side-quote {
    border-left: 5px solid #cccccc;
    margin: 3rem 0 4rem 0;
    padding: 0.2rem 0 0.2rem 1.2rem;
    font-size: 1.18rem;
    color: #444;
    background: none;
    font-family: var(--font-heading);
    font-weight: 500;
}

.info-box.seelensprache {
    background: rgba(222, 204, 174, 0.3);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    color: #444;
    box-shadow: none;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
}

/* Farbige Boxen für Beispielfragen und "wann hilfreich" */
.info-box.blue-accent {
    background: linear-gradient(135deg, rgba(139, 168, 171, 0.15), rgba(139, 168, 171, 0.25));
    border: 2px solid rgba(139, 168, 171, 0.4);
    box-shadow: 0 8px 25px rgba(139, 168, 171, 0.15);
}

.info-box.blue-accent:hover {
    border-color: rgba(139, 168, 171, 0.6);
    box-shadow: 0 12px 35px rgba(139, 168, 171, 0.2);
}

.info-box.green-accent {
    background: linear-gradient(135deg, rgba(222, 204, 174, 0.15), rgba(222, 204, 174, 0.25));
    border: 2px solid rgba(222, 204, 174, 0.4);
    box-shadow: 0 8px 25px rgba(222, 204, 174, 0.15);
}

.info-box.green-accent:hover {
    border-color: rgba(222, 204, 174, 0.6);
    box-shadow: 0 12px 35px rgba(222, 204, 174, 0.2);
}
.info-box.seelensprache h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section#tiergespraech .info-boxes {
    margin-top: 2.5rem;
}

.service-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

/* SoulKey-Listen-Boxen */
.soulkey-list-box {
    background: rgba(248, 246, 243, 0.85);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    padding: 2.5rem 2.5rem;
    box-shadow: 0 4px 18px 0 rgba(182,199,189,0.08);
}

.soulkey-list-box ul.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.soulkey-list-box ul.feature-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 1.08rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(182,199,189,0.08);
    text-align: center;
}
.soulkey-list-box ul.feature-list li:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    /* SoulKey: Listen-Boxen - Eleganter */
    .soulkey-list-box {
        padding: 1.2rem 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    .soulkey-list-box ul.feature-list li {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(139, 168, 171, 0.1);
    }
    /* Info-Boxen - Eleganter */
    .info-boxes {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    .info-box {
        padding: 1.2rem 1rem;
        border-radius: 16px;
        font-size: 0.95rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.95);
    }
    .info-box h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    /* Preis-Boxen - Eleganter */
    .price-card {
        padding: 1.2rem 1rem;
        border-radius: 16px;
        font-size: 0.95rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    /* SoulKey Bild - Eleganter */
    .section-img.center {
        display: block;
        margin: 1rem auto;
        max-width: 90vw;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    /* SoulKey Zitat - Eleganter */
    .side-quote {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0.2rem 0 0.2rem 1rem;
        margin: 1.5rem 0;
        border-left-width: 3px;
        text-align: left;
        max-width: 98vw;
        border-radius: 0 8px 8px 0;
    }
    /* Überschriften - Eleganter */
    .dancing-script-blue.extra-large {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    .centered-title, h3.centered-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    /* Fließtext - Eleganter */
    .content-text p, .centered-text {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 98vw;
        margin: 0 auto 1rem auto;
    }
    /* Buttons - Eleganter */
    .btn-primary, .btn-more {
        min-height: 46px;
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
        border-radius: 23px;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Abstand zwischen Sektionen - Eleganter */
    .section {
        padding: 2rem 0;
    }
    
    /* Service Cards - Eleganter */
    .service-card {
        padding: 1.2rem 1rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Hero Section - Eleganter */
    .hero {
        padding: 4.5rem 0 3rem 0;
    }
    
    .hero-main-title .emotional-intro {
        font-size: 2.6rem;
    }
    
    .hero-secondary-title {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Container - Eleganter */
    .container {
        padding: 0 1rem;
    }
    
    /* Section Titles - Eleganter */
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    /* Kleine Mobile Geräte - Eleganter */
    .hero {
        padding: 4rem 0 2.5rem 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-main-title .emotional-intro {
        font-size: 2.4rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .hero-secondary-title {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-quote {
        font-size: 0.95rem;
        padding: 1rem;
        margin: 1.2rem auto;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 10px;
    }
    
    .container {
        padding: 0 0.8rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .section {
        padding: 2.5rem 0;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .service-card,
    .price-card {
        padding: 0.8rem 0.6rem;
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }

    .about-img {
        height: 200px;
        border-radius: 10px;
    }

    .section-img {
        height: 180px;
        border-radius: 10px;
    }

    /* Touch-friendly improvements - Eleganter */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .btn-primary {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 24px;
    }

    .btn-more {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 24px;
    }

    /* Better spacing for mobile - Eleganter */
    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .header-portrait {
        width: 120px;
        height: 170px;
        order: -1;
    }
    
    .header-portrait img {
        border-radius: 12px;
    }

    .pricing-options {
        gap: 1rem;
    }

    .values-grid {
        gap: 1rem;
    }

    /* Improved text readability - Eleganter */
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .content-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 0.7rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0.4rem 0;
    }

    /* Better form elements - Eleganter */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
        border-radius: 8px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px rgba(139, 168, 171, 0.1);
    }

    /* Improved hamburger menu - Eleganter */
    .hamburger {
        padding: 5px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }
    
    /* Info Boxes - Eleganter */
    .info-boxes {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .info-box {
        padding: 1rem 0.8rem;
        border-radius: 12px;
        font-size: 0.9rem;
    }
    
    .info-box h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    /* SoulKey List Box - Eleganter */
    .soulkey-list-box {
        padding: 1.2rem 0.8rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }
    
    .soulkey-list-box ul.feature-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    /* Dancing Script - Eleganter */
    .dancing-script-blue.larger {
        font-size: 1.6rem;
    }
    
    .dancing-script-blue.extra-large {
        font-size: 2.2rem;
    }
    
    /* Side Quote - Eleganter */
    .side-quote {
        font-size: 0.95rem;
        padding: 0.2rem 0 0.2rem 0.8rem;
        margin: 1.5rem 0;
        border-left-width: 2px;
    }
    
    /* Hero Image - Eleganter */
    .hero-img {
        width: 140px;
        height: 175px;
        border-radius: 12px;
    }
    
    /* Content Grid - Eleganter */
    .content-grid,
    .content-grid.reverse {
        gap: 1rem;
    }
    
    .content-text {
        padding: 0 0.3rem;
    }
    
    /* Service Cards - Eleganter */
    .services-preview {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .service-card {
        padding: 0.8rem 0.6rem;
    }
    
    /* Price Cards - Eleganter */
    .pricing-options {
        gap: 1rem;
    }
    
    .price-card {
        padding: 1rem 0.8rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
}

/* Mobile Navigation Verbesserungen */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
        backdrop-filter: blur(15px);
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-menu {
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(139, 168, 171, 0.1);
    }
    
    .nav-link {
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(139, 168, 171, 0.1);
        transform: translateX(5px);
    }
    
    .language-selector {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .lang-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
    }
}

/* Mobile Spacing und Layout Verbesserungen */
@media (max-width: 768px) {
    /* Bessere Abstände zwischen Sektionen */
    .section + .section {
        margin-top: 0;
    }
    
    /* Elegantere Card Hover Effekte */
    .service-card:hover,
    .price-card:hover,
    .info-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    /* Verbesserte Text-Hierarchie */
    .content-text h3 + p {
        margin-top: 0.5rem;
    }
    
    /* Elegantere Listen */
    .feature-list li:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    /* Verbesserte Button-Styles */
    .btn-primary,
    .btn-more {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary:hover,
    .btn-more:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(139, 168, 171, 0.3);
    }
    
    /* Elegantere Formulare */
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.4rem;
        color: var(--text-color);
    }
    
    /* Verbesserte Bilder */
    .section-img {
        transition: all 0.3s ease;
    }
    
    .section-img:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Elegantere Zitate */
    .hero-quote {
        position: relative;
        overflow: hidden;
    }
    
    .hero-quote::before,
    .hero-quote::after {
        opacity: 0.7;
    }
    
    /* Verbesserte Section Headers */
    .section-header {
        position: relative;
    }
    
    .section-header::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-color), var(--primary-bg));
        border-radius: 1px;
    }
    
    /* Elegantere Info Boxes */
    .info-box {
        position: relative;
        overflow: hidden;
    }
    
    .info-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), var(--primary-bg));
        opacity: 0.6;
    }
    
    /* Verbesserte Typography */
    .content-text p {
        text-align: justify;
        hyphens: auto;
    }
    
    /* Elegantere Grid Layouts */
    .content-grid,
    .services-preview,
    .pricing-options,
    .values-grid,
    .info-boxes {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Verbesserte Container */
    .container {
        position: relative;
    }
    
    /* Elegantere Footer */
    .footer {
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-icon {
        transition: all 0.3s ease;
    }
    
    .footer-icon:hover {
        transform: translateY(-2px);
    }
}

/* Zusätzliche mobile Optimierungen für sehr kleine Geräte */
@media (max-width: 360px) {
    .hero-main-title .emotional-intro {
        font-size: 2.2rem;
    }
    
    .hero-secondary-title {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .service-card,
    .price-card,
    .info-box {
        padding: 1rem 0.8rem;
    }
    
    .btn-primary,
    .btn-more {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 7.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-quote {
        font-size: 0.85rem;
        line-height: 1.8;
        text-align: center;
        padding: 1.2rem 1rem 1.2rem 1rem;
        max-width: 95vw;
        margin: 1.5rem auto;
        border-radius: 14px;
        background: rgba(248, 246, 243, 0.9);
        box-shadow: 0 2px 12px 0 rgba(182,199,189,0.08);
        word-break: break-word;
    }
    .hero-quote strong {
        display: block;
        margin-top: 0.7rem;
        font-size: 1.08em;
    }
}

@media (max-width: 600px) {
    .hero-secondary-title {
        font-size: 1.5rem;
    }
    .hero-img {
        width: 220px;
        height: 270px;
    }
    .hero-statement {
        font-size: 0.95rem;
    }
}
@media (max-width: 360px) {
    .hero-secondary-title {
        font-size: 1.2rem;
    }
    .hero-img {
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .service-card {
        padding: 1.1rem 0.7rem;
        margin-bottom: 1.1rem;
        border-radius: 16px;
        box-shadow: 0 2px 8px 0 rgba(139,168,171,0.07);
        font-size: 0.97rem;
        background: #fff;
    }
    .service-card.featured {
        background: #eafaf3;
    }
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    .service-title {
        font-size: 1.05rem;
        font-weight: 600;
    }
    .hero-animal-title, .hero-soul-title, .hero-soulkey-title {
        font-size: 1.08rem;
        margin-bottom: 0.5rem;
    }
    .hero-animal-desc, .hero-soul-desc, .hero-soulkey-desc {
        font-size: 0.97rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
    }
    .btn-more.hero-btn {
        font-size: 0.97rem;
        padding: 0.45rem 1.1rem;
        border-radius: 12px;
        margin-top: 0.2rem;
    }
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-color);
    text-align: center;
    margin: 2rem auto;
    padding: 1.2rem 1rem;
    background: #f7fbfd;
    border-radius: 16px;
    border-left: 3px solid var(--accent-color);
    max-width: 500px;
    position: relative;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.03);
}
.hero-statement {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin: 1.2rem auto 1rem auto;
    max-width: 500px;
    white-space: normal;
}
@media (max-width: 600px) {
    .hero-quote {
        font-size: 0.85rem;
        margin: 1.2rem auto;
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
        max-width: 95vw;
    }
    .hero-statement {
        font-size: 0.85rem;
        margin: 0.8rem auto 0.5rem auto;
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .product-box.soul {
        background: #eafaf3;
    }
    .product-box.animal {
        /* bleibt wie bisher */
    }
    .product-box.soulkey {
        background: #fff;
    }
}

.hero-highlight-box {
  background: linear-gradient(135deg, #f8f6f3 80%, #eafaf3 100%);
  box-shadow: 0 6px 32px 0 rgba(182,199,189,0.13);
  border-radius: 22px;
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  margin: 2.5rem auto 1.5rem auto;
  max-width: 520px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.3s;
}
.hero-highlight-box span {
  display: block;
  margin: 0.2rem 0;
}
@media (max-width: 600px) {
  .hero-highlight-box {
    font-size: 1rem;
    padding: 1.2rem 0.5rem 1.1rem 0.5rem;
    max-width: 98vw;
    border-radius: 14px;
    gap: 0.7rem;
  }
}

.hero-centered-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #6b6b6b;
  font-weight: 500;
  margin: 2.2rem auto 1.2rem auto;
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 520px;
}
@media (max-width: 600px) {
  .hero-centered-heading {
    font-size: 1rem;
    margin: 1.2rem auto 0.7rem auto;
    max-width: 98vw;
  }
}

.hero-text-block {
  text-align: center;
  font-family: 'Dancing Script', cursive, var(--font-heading);
  font-size: 1.18rem;
  color: #5a6a6a;
  font-weight: 500;
  margin: 6rem auto 2.2rem auto;
  line-height: 2.05;
  letter-spacing: 0.01em;
  max-width: 600px;
  transition: all 0.2s;
}
.hero-text-block p {
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .hero-text-block {
    font-size: 1.05rem;
    margin: 4.5rem auto 1.2rem auto;
    max-width: 98vw;
  }
}

.hero-script-intro {
  font-family: 'Dancing Script', cursive, var(--font-heading);
  font-size: 1.7rem;
  color: #5a6a6a;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .hero-script-intro {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
}

.hero-break {
  font-family: 'Questrial', Arial, sans-serif;
  font-size: 1.15rem;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin: 2.2rem auto 0.7rem auto;
  letter-spacing: 0.01em;
}
.hero-statement-modern {
  font-family: 'Questrial', Arial, sans-serif;
  font-size: 1.08rem;
  color: #444;
  font-weight: 400;
  text-align: center;
  margin: 1.1rem auto 0 auto;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .hero-break {
    font-size: 1rem;
    margin: 1.2rem auto 0.5rem auto;
  }
  .hero-statement-modern {
    font-size: 0.97rem;
    margin: 0.7rem auto 0 auto;
  }
}

#soulkey .pricing-options {
  justify-content: center;
}
#soulkey .price-card {
  max-width: 420px;
  margin: 0 auto;
}

.waitlist-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(139,168,171,0.08);
  letter-spacing: 0.01em;
}
#soulkey .price-card {
  position: relative;
}

#tiergespraech .content-text h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 2.5rem auto 2rem auto;
  line-height: 1.2;
}

#tiergespraech .content-text p,
#tiergespraech .content-text .tiergespraech-text .desktop-only {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  white-space: normal;
  font-family: inherit;
}

#tiergespraech .content-text p.tiergespraech-text {
  margin-bottom: 1.2rem;
}

#tiergespraech .content-text br {
  display: inline;
}

#tiergespraech .section-title {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}
#tiergespraech .content-text h3,
#tiergespraech .centered-title,
#tiergespraech h3.centered-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 2rem auto 1.2rem auto;
  line-height: 1.2;
  text-align: center;
}
#tiergespraech .info-box h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-align: center;
  font-family: var(--font-heading);
}

#tiergespraech .important-note {
  text-align: left !important;
}

#tiergespraech .important-note p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.about-content-desktop { display: flex; }
.about-content-mobile { display: none; }

@media (max-width: 900px) {
  .about-content-desktop { display: none !important; }
  .about-content-mobile { display: flex !important; }
}

.about-content-desktop .section-title {
  text-align: center !important;
}

#about .section-title {
  text-align: center !important;
  margin-bottom: 4rem;
}

#contact .section-title {
  margin-bottom: 3.5rem;
}

#contact .section-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

#tiergespraech.section {
  background: #f7f3ec !important;
}

.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

.seelengespraech-abschnitt-neu.desktop-only p,
.tiergespraech-abschnitt-neu.desktop-only p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



