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

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Prevent scrolling in sections */
section, .hero, .about, .ablauf, .services, .info, .contact {
    overflow: hidden !important;
    height: auto !important;
    max-height: none !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

.about .container {
    max-width: 1400px;
    padding-right: 30px;
}

@media (max-width: 768px) {
    .about .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
/* Navigation */
.navbar {
    background-color: #735353;
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(115, 83, 83, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

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

.nav-logo-text {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-logo-text:hover {
    transform: translateY(-1px);
}

.nav-logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4B6B6 0%, #FFFFFF 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-text:hover::after {
    width: 100%;
}

.nav-logo-text h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4B6B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.nav-logo-text span {
    color: #D4B6B6;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-phone i {
    color: #D4B6B6;
    font-size: 0.8rem;
}

.nav-phone a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-phone a:hover {
    color: #D4B6B6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin-left: 1rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.8rem;
}

.nav-link:hover {
    color: #D4B6B6;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D4B6B6;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #D4B6B6;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 14px;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hamburger:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(212, 182, 182, 0.1) 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 182, 182, 0.3);
}

.bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #FFFFFF 0%, #D4B6B6 100%);
    margin: 5px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D4B6B6 0%, #FFFFFF 100%);
    padding: 100px 0 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #735353;
    margin-top: 0;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #735353;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #735353;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a4141 0%, #735353 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(115, 83, 83, 0.4);
}

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

.btn-secondary:hover {
    background: linear-gradient(135deg, #735353 0%, #5a4141 100%);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(115, 83, 83, 0.3);
}

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

.hero-photo {
    width: 400px;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(115, 83, 83, 0.2);
    transition: transform 0.3s ease;
    margin-top: 0.5rem;
}

.hero-photo:hover {
    transform: scale(1.02);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #735353;
    margin-bottom: 0.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #735353;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 40px 0;
    background-color: #FFFFFF;
    scroll-margin-top: 120px;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
}

.about-text {
    max-width: 100%;
    word-wrap: break-word;
}

.about-text h3 {
    font-size: 2rem;
    color: #735353;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.about-text h4 {
    font-size: 1.3rem;
    color: #735353;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.qualifications {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.qualifications h4 {
    font-size: 1.6rem;
    color: #735353;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-align: left;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.qualifications h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4B6B6 0%, #8B5A5A 100%);
    border-radius: 1px;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background-color: #D4B6B6;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.qualification:hover {
    transform: translateX(10px);
}

.qualification i {
    font-size: 1.5rem;
    color: #735353;
    width: 30px;
}

.qualification span {
    color: #735353;
    font-weight: 500;
}

.qualification-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.qualification-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    color: #735353;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    margin: 0.4rem;
    vertical-align: top;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(212, 182, 182, 0.3);
    box-shadow: 
        0 12px 32px rgba(115, 83, 83, 0.15),
        0 6px 16px rgba(115, 83, 83, 0.1);
    position: relative;
    overflow: hidden;
}

.qualification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.qualification-item:hover {
    transform: translateY(-4px) scale(1.08);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    box-shadow: 
        0 16px 40px rgba(115, 83, 83, 0.2),
        0 8px 20px rgba(115, 83, 83, 0.15);
    border-color: rgba(212, 182, 182, 0.6);
}

.qualification-item:hover::before {
    left: 100%;
}

.viszerale-list {
    background: linear-gradient(135deg, #D4B6B6 0%, #E8C8C8 100%);
    padding: 1rem;
    border-radius: 12px;
    margin: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(115, 83, 83, 0.1);
    position: relative;
    overflow: hidden;
}

.viszerale-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #735353 0%, #8B5A5A 50%, #735353 100%);
}

.viszerale-item {
    color: #735353;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    transition: all 0.3s ease;
}

.viszerale-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: #735353;
    font-size: 0.6rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .viszerale-item::before {
        content: '•';
        font-size: 1rem;
        color: #735353;
        top: 0.1rem;
        left: 0.2rem;
        opacity: 1;
    }
    
    .viszerale-item {
        padding-left: 1.8rem;
        font-size: 0.9rem;
    }
}

.viszerale-item:hover {
    transform: translateX(6px);
    color: #5A3A3A;
}

.viszerale-item:hover::before {
    transform: translateX(3px);
    opacity: 1;
}

.viszerale-item:last-child {
    margin-bottom: 0;
}

/* Nur für Blasen ohne Unterpunkte - gleiche Höhe */
.qualification-item:not(.has-subitems) {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

/* Desktop: Bessere Kontrolle für Blasen ohne Unterpunkte */
@media (min-width: 769px) {
    .qualification-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .qualification-item.has-subitems {
        width: 100%;
    }
    
    .qualification-item:not(.has-subitems) {
        max-width: none;
        flex: none;
        width: fit-content;
        margin: 0;
    }
}

.qualification-subitem {
    font-size: 0.75rem;
    color: #735353;
    margin-top: 0.3rem;
    margin-left: 0.8rem;
    font-weight: 400;
    position: relative;
    padding-left: 0.5rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .qualification-subitem {
        font-size: 0.7rem;
        margin-left: 0.5rem;
        padding-left: 0.3rem;
        line-height: 1.4;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.qualification-subitem:hover {
    transform: translateX(4px);
    color: #5A3A3A;
}

.career-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 182, 182, 0.3);
    box-shadow: 
        0 6px 18px rgba(115, 83, 83, 0.1),
        0 2px 6px rgba(115, 83, 83, 0.06);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.career-box:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    box-shadow: 
        0 12px 32px rgba(115, 83, 83, 0.18),
        0 6px 16px rgba(115, 83, 83, 0.12);
    border-color: rgba(212, 182, 182, 0.6);
}

.career-line {
    color: #735353;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-line::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: #735353;
    font-size: 0.7rem;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .career-line::before {
        content: '•';
        font-size: 1.1rem;
        color: #735353;
        top: 0.1rem;
        left: 0.2rem;
        opacity: 1;
    }
    
    .career-line {
        padding-left: 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
}

.career-line:hover {
    transform: translateX(6px);
    color: #5A3A3A;
}

.career-line:hover::before {
    transform: translateX(3px);
    opacity: 1;
    color: #8B5A5A;
}

.career-line:last-child {
    margin-bottom: 0;
}

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

@media (min-width: 769px) {
    .about-image {
        justify-content: flex-end;
        padding-left: 0;
        display: flex;
        align-items: flex-start;
        padding-top: 0;
        margin-top: -6rem;
        padding-right: 2rem;
        overflow: visible;
    }
    
    .about-logo {
        width: 650px;
        height: 650px;
        margin: 0;
        display: block;
        margin-right: -4rem;
    }
}

.about-logo {
    width: 650px;
    height: 650px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(115, 83, 83, 0.2);
    transition: transform 0.3s ease;
    background-color: #FFFFFF;
    padding: 20px;
}

.about-logo:hover {
    transform: scale(1.02);
}

/* Ablauf Section */
.ablauf {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4B6B6 100%);
    scroll-margin-top: 120px;
    overflow: hidden;
}


.ablauf-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ablauf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}


@media (min-width: 1024px) {
    .ablauf-step {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }
    
    .ablauf-step-reverse {
        flex-direction: row-reverse;
    }
}

.ablauf-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ablauf-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ablauf-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ablauf-step:hover .ablauf-number {
    transform: scale(1.05);
}

.ablauf-content h3 {
    color: #735353;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ablauf-subtitle {
    color: #735353;
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

.ablauf-description {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.ablauf-image {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.ablauf-step:hover .ablauf-image {
    transform: translateY(-5px);
}

.ablauf-img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1023px) {
    .ablauf-img {
        width: 350px;
        height: 250px;
    }
}

/* Kundenstimmen Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #D4B6B6 100%);
    scroll-margin-top: 120px;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}


.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #735353;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #735353;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.testimonial-slides {
    position: relative;
    width: 100%;
    height: 400px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(115, 83, 83, 0.08),
        0 2px 8px rgba(115, 83, 83, 0.04);
    border: 1px solid rgba(115, 83, 83, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

/* Slider-specific styles */
.testimonial-slides .testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.testimonial-slides .testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slides .testimonial-card.prev {
    transform: translateX(-100%);
}


.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4B6B6 0%, #8B5A5A 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(115, 83, 83, 0.12),
        0 8px 16px rgba(115, 83, 83, 0.08);
    border-color: rgba(212, 182, 182, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .star {
    transform: scale(1.1);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #735353;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: #D4B6B6;
    font-family: Georgia, serif;
    opacity: 0.6;
}

.testimonial-quote::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -1rem;
    font-size: 2rem;
    color: #D4B6B6;
    font-family: Georgia, serif;
    opacity: 0.6;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #735353;
    margin-bottom: 0.3rem;
}

.author-treatment {
    font-size: 0.9rem;
    color: #735353;
    opacity: 0.7;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 1.5rem;
    }
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(115, 83, 83, 0.3);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(115, 83, 83, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(115, 83, 83, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #735353;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #8B5A5A;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        max-width: 100%;
        margin: 2rem auto 0;
    }
    
    .testimonial-slides {
        height: 350px;
    }
    
    .slider-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-dots {
        gap: 0.8rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* In Action Section */
.in-action {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #D4B6B6 100%);
}

.action-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.action-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(115, 83, 83, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(115, 83, 83, 0.1), rgba(212, 182, 182, 0.1));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.action-item:hover::before {
    opacity: 0.7;
}

.action-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(115, 83, 83, 0.25);
}

.action-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.action-item:hover .action-image {
    transform: scale(1.05);
}

/* Blog Hero Section */
.blog-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #735353 0%, #D4B6B6 100%);
    text-align: center;
    color: white;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4B6B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #D4B6B6 100%);
    scroll-margin-top: 120px;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 182, 182, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 182, 182, 0.3);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #666;
    font-weight: 500;
}

.blog-category {
    background: linear-gradient(135deg, #D4B6B6 0%, #FFFFFF 100%);
    color: #735353;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-content h3 {
    color: #735353;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #8B5A5A;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-read-more {
    color: #D4B6B6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.blog-read-more:hover {
    color: #8B5A5A;
    transform: translateX(5px);
}

.blog-read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(3px);
}

/* Services Section */
.services {
    padding: 60px 0;
    background: linear-gradient(135deg, #D4B6B6 0%, #FFFFFF 100%);
    scroll-margin-top: 120px;
    overflow: hidden;
}

.schwerpunkte-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 769px) {
    .schwerpunkte-grid {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .schwerpunkt-card:nth-child(1),
    .schwerpunkt-card:nth-child(2) {
        flex: 1;
        min-width: calc(50% - 1rem);
    }
}

.ortho-chirurg-section {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ortho-chirurg-title {
    font-size: 2.2rem;
    color: #735353;
    text-align: center;
    margin: 0 0 2rem 0;
    font-weight: 700;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.ortho-chirurg-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4B6B6 0%, #8B5A5A 100%);
    border-radius: 2px;
}

.viszerale-section {
    margin-top: 4rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.viszerale-title {
    font-size: 2.2rem;
    color: #735353;
    text-align: center;
    margin: 3rem 0 1rem 0;
    font-weight: 700;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.viszerale-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4B6B6 0%, #8B5A5A 100%);
    border-radius: 2px;
}

.viszerale-description {
    font-size: 1.1rem;
    color: #735353;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 3rem auto;
    font-weight: 400;
}

.viszerale-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 769px) {
    .viszerale-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem auto 0;
        max-width: 1000px;
    }
}

@media (min-width: 1024px) {
    .viszerale-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

.viszerale-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 182, 182, 0.1) 0%, rgba(232, 200, 200, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(115, 83, 83, 0.1);
    max-width: 800px;
}

.viszerale-img {
    width: 45%;
    max-width: 300px;
    height: 250px;
    object-fit: contain;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 32px rgba(115, 83, 83, 0.15),
        0 4px 16px rgba(115, 83, 83, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(115, 83, 83, 0.2);
    position: relative;
}

.viszerale-img:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 
        0 20px 48px rgba(115, 83, 83, 0.25),
        0 8px 24px rgba(115, 83, 83, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(115, 83, 83, 0.3);
}

@media (max-width: 768px) {
    .viszerale-images {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .viszerale-img {
        width: 90%;
        max-width: 280px;
        height: 200px;
        object-fit: contain;
    }
}

/* Modern Cards Design */
.modern-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.modern-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(115, 83, 83, 0.08),
        0 8px 16px rgba(115, 83, 83, 0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: none;
    outline: none;
}

.modern-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(115, 83, 83, 0.15),
        0 16px 32px rgba(115, 83, 83, 0.08);
}

.card-image {
    position: relative;
    height: 450px; /* Noch größer für Desktop */
    overflow: hidden;
    background: transparent;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Zeigt das ganze Bild ohne Zuschneiden */
    transition: transform 0.4s ease;
    background: transparent;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.modern-card:hover .card-image img {
    transform: scale(1.05);
}

/* Simple clean squares */
.treatment-bullet {
    width: 8px;
    height: 8px;
    background: #735353;
    border-radius: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.treatment-item:hover .treatment-bullet {
    background: #8B5A5A;
    transform: rotate(45deg) scale(1.1);
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.8rem;
    color: #735353;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    min-height: 4.3rem; /* Feste Höhe für einheitliche Ausrichtung */
    display: flex;
    align-items: center;
    justify-content: center; /* Horizontale Zentrierung */
    text-align: center; /* Zentriert mehrzeiligen Text */
}

.card-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.treatment-areas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.treatment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(115, 83, 83, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.treatment-item:hover {
    background: rgba(115, 83, 83, 0.1);
    border-left-color: #735353;
    transform: translateX(4px);
}

.treatment-item span:last-child {
    color: #735353;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left; /* Linksbündiger Text */
}

/* Viszerale Cards (without images) */
.viszerale-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(115, 83, 83, 0.08),
        0 8px 16px rgba(115, 83, 83, 0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(115, 83, 83, 0.06);
    min-height: 300px;
}

.viszerale-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(115, 83, 83, 0.15),
        0 16px 32px rgba(115, 83, 83, 0.08);
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .modern-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .card-image {
        height: 320px;
    }
    
    .card-content {
        padding: 2.5rem;
    }
    
    .card-content h4 {
        font-size: 2rem;
    }
    
    /* Viszerale cards in 2 columns */
    .viszerale-section .modern-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    /* Viszerale cards bleiben in 2 columns für bessere Balance */
    .viszerale-section .modern-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Clean Premium Viszerale Therapie Cards */
.schwerpunkt-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(115, 83, 83, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    min-height: 280px;
    border: 1px solid rgba(115, 83, 83, 0.05);
}

.schwerpunkt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(115, 83, 83, 0.12);
}

.schwerpunkt-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

.schwerpunkt-img {
    width: 80%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    background-color: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(115, 83, 83, 0.1);
}

.schwerpunkt-img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(115, 83, 83, 0.2);
}

.schwerpunkt-content {
    padding: 1.5rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.schwerpunkt-content h4 {
    font-size: 1.2rem;
    color: #735353;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
}

.schwerpunkt-symptoms h5 {
    font-size: 0.9rem;
    color: #735353;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.schwerpunkt-symptoms ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schwerpunkt-symptoms li {
    color: #735353;
    padding: 0.3rem 0;
    position: relative;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.schwerpunkt-symptoms li::before {
    content: "•";
    color: #D4B6B6;
    font-weight: 600;
    position: absolute;
    left: -1rem;
    top: 0.3rem;
    font-size: 0.8rem;
}

.schwerpunkt-symptoms li {
    padding-left: 1rem;
}

.schwerpunkt-symptoms li:hover {
    color: #8B5A5A;
}

.schwerpunkt-symptoms li:hover::before {
    color: #8B5A5A;
}

.schwerpunkt-symptoms li:last-child {
    margin-bottom: 0;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .modern-cards-container {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .card-image {
        height: 280px; /* Größer für Mobile */
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        min-height: 3.6rem; /* Feste Höhe für einheitliche Ausrichtung auf Mobile */
        display: flex;
        align-items: center;
        justify-content: center; /* Horizontale Zentrierung */
        text-align: center; /* Zentriert mehrzeiligen Text */
    }
    
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .treatment-item {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
    }
    
    .treatment-icon {
        font-size: 1.2rem;
        min-width: 1.5rem;
    }
    
    .treatment-item span:last-child {
        font-size: 0.85rem;
    }
    
    /* Viszerale cards mobile */
    .viszerale-card {
        min-height: 250px;
    }
    
    .schwerpunkt-content {
        padding: 1.2rem;
    }
    
    .schwerpunkt-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .schwerpunkt-symptoms h5 {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .schwerpunkt-symptoms li {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
}

.service-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(115, 83, 83, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(115, 83, 83, 0.2);
    border-color: #D4B6B6;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #D4B6B6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.2rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: #735353;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #735353;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: #333;
    line-height: 1.6;
}

/* Info Section */
.info {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #D4B6B6 100%);
    scroll-margin-top: 120px;
    overflow: hidden;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(115, 83, 83, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.info-item:hover {
    box-shadow: 0 8px 25px rgba(115, 83, 83, 0.15);
}

.info-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.info-question:hover {
    background-color: #f8f9fa;
}

.info-question h3 {
    color: #735353;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.info-question i {
    color: #D4B6B6;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.info-item.active .info-question i {
    transform: rotate(180deg);
}

.info-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-item.active .info-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
}

.info-answer p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4B6B6;
}

.price-item span:first-child {
    color: #735353;
    font-weight: 500;
}

.price-item span:last-child {
    color: #735353;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #FFFFFF;
    scroll-margin-top: 120px;
    overflow: hidden !important;
    height: 100vh;
    position: relative;
}

.contact .container {
    overflow: hidden !important;
    height: 100%;
}

.contact-info {
    overflow: hidden !important;
    height: 100%;
}

/* Impressum Section */
.impressum {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #D4B6B6 0%, #FFFFFF 100%);
    width: 100%;
}

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #735353;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(115, 83, 83, 0.2);
}

.back-button:hover {
    background-color: #5a4141;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 83, 83, 0.3);
    color: #FFFFFF;
}

.back-button i {
    font-size: 0.9rem;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-section {
    margin-bottom: 2.5rem;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.impressum-section h3 {
    color: #735353;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #D4B6B6;
    padding-bottom: 0.5rem;
}

.impressum-section h4 {
    color: #735353;
    font-size: 1.1rem;
    margin: 1.2rem 0 0.6rem 0;
    font-weight: 500;
}

.impressum-section p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Datenschutz Section */
.datenschutz {
    padding: 120px 0 60px;
    background-color: #FFFFFF;
    width: 100%;
}

.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
}

.datenschutz-section {
    margin-bottom: 2.5rem;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.datenschutz-section h3 {
    color: #735353;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #D4B6B6;
    padding-bottom: 0.5rem;
}

.datenschutz-section h4 {
    color: #735353;
    font-size: 1.1rem;
    margin: 1.2rem 0 0.6rem 0;
    font-weight: 500;
}

.datenschutz-section p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Mobile Optimierungen für Datenschutz */
@media (max-width: 768px) {
    .datenschutz {
        padding: 100px 0 40px;
    }
    
    .datenschutz-content {
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .datenschutz-section {
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .datenschutz-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .datenschutz-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        word-break: keep-all;
        hyphens: none;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .datenschutz .section-header h2 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        word-break: keep-all;
        hyphens: none;
    }
    
    .datenschutz .section-header p {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem;
    }
}

.contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 182, 182, 0.2);
    box-shadow: 
        0 15px 35px rgba(115, 83, 83, 0.08),
        0 5px 15px rgba(115, 83, 83, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 160px;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F2F5 100%);
    box-shadow: 
        0 25px 50px rgba(115, 83, 83, 0.12),
        0 10px 25px rgba(115, 83, 83, 0.08);
    border-color: rgba(212, 182, 182, 0.4);
}

.contact-item i {
    font-size: 2.5rem;
    color: #735353;
    width: 50px;
    text-align: center;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: #735353;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #735353 0%, #8B5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item p {
    color: #735353;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, #8B5A5A 0%, #735353 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Footer */
.footer {
    background-color: #735353;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #D4B6B6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #D4B6B6;
    padding-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #D4B6B6;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-links a {
    color: #D4B6B6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 0.5rem;
        box-sizing: border-box;
    }
    
    .nav-logo {
        flex: 1;
        min-width: 200px;
    }
    
    .nav-logo-text h2 {
        font-size: 1.1rem;
    }
    
    .nav-logo-text span {
        font-size: 0.7rem;
    }
    
    .nav-phone {
        order: 2;
        margin-left: auto;
    }
    
    .nav-phone a {
        font-size: 0.8rem;
    }
    
    .hamburger {
        order: 3;
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 45px;
        flex-direction: row;
        background: linear-gradient(135deg, #735353 0%, #8a5f5f 100%);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        padding: 0.2rem 0;
        border-radius: 0 0 8px 8px;
        z-index: 999;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.05rem;
    }
    
    .nav-menu .nav-link {
        color: #FFFFFF;
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
        display: block;
        transition: all 0.3s ease;
        font-weight: 400;
        position: relative;
        border-radius: 3px;
        white-space: nowrap;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        color: #D4B6B6;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        padding: 80px 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        word-break: keep-all;
        hyphens: none;
    }
    
    .section-header p {
        font-size: 1.05rem;
        font-weight: 400;
    }
    
    
    .about-logo {
        width: 250px;
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-logo-text h2 {
        font-size: 1.1rem;
        margin: 0;
        letter-spacing: 0.3px;
    }
    
    .nav-logo-text span {
        font-size: 0.65rem;
        margin: 0;
        letter-spacing: 0.2px;
    }
    
    .nav-phone {
        font-size: 0.8rem;
    }
    
    .nav-phone a {
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
        width: 260px;
        height: auto;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        padding: 0.8rem 0;
        border-radius: 16px;
        border: 1px solid rgba(212, 182, 182, 0.2);
        z-index: 999;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }

    .nav-menu.active {
        right: 20px;
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu .nav-link {
        color: #735353;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        display: block;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        font-weight: 600;
        position: relative;
        border-radius: 8px;
        margin: 0.15rem 1rem;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(212, 182, 182, 0.1);
        letter-spacing: 0.1px;
        opacity: 0;
        transform: translateY(20px);
        transition-delay: 0s;
    }
    
    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        color: #FFFFFF;
        background: linear-gradient(135deg, #D4B6B6 0%, #8B5A5A 100%);
        transform: translateY(-1px) scale(1.01);
        box-shadow: 
            0 6px 15px rgba(212, 182, 182, 0.3),
            0 3px 8px rgba(0, 0, 0, 0.1);
        border-color: rgba(212, 182, 182, 0.3);
    }
    

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-container .hero-content {
        order: 1;
    }
    
    .hero-container .hero-content .hero-buttons {
        display: none;
    }
    
    .hero-container .hero-buttons {
        order: 3;
        display: flex !important;
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .hero-container .hero-image {
        order: 2;
    }
    

    .hero {
        padding: 120px 0 50px;
        background: linear-gradient(135deg, #D4B6B6 0%, #FFFFFF 100%);
    }

    .hero-content h1 {
        font-size: 3.2rem;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2.2rem;
        font-weight: 400;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 30px;
        font-weight: 600;
    }
    
    .hero-photo {
        width: 300px;
        height: 380px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(115, 83, 83, 0.25);
    }


    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-logo {
        max-width: 250px;
        max-height: 250px;
    }
    
    .about-logo {
        width: 320px;
        height: 320px;
        padding: 20px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(115, 83, 83, 0.2);
    }
    
    .action-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-item {
        border-radius: 20px;
        background: transparent;
        box-shadow: 0 8px 32px rgba(115, 83, 83, 0.15);
        border: none;
        transition: all 0.3s ease;
        overflow: hidden;
        padding: 0;
    }
    
    .action-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(115, 83, 83, 0.25);
    }
    
    .action-image {
        height: auto;
        max-height: 420px;
        border-radius: 20px;
        object-fit: contain;
        background-color: transparent;
        transition: transform 0.3s ease;
        filter: brightness(0.95) contrast(1.05);
    }
    
    .action-item:hover .action-image {
        transform: scale(1.03);
        filter: brightness(1.0) contrast(1.1);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        border-radius: 16px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .schwerpunkt-images {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .schwerpunkt-img {
        width: 90%;
        max-width: 250px;
        height: 200px;
        object-fit: cover;
        background-color: transparent;
        border-radius: 12px;
    }
    
    .schwerpunkt-content {
        padding: 1.5rem;
    }
    
    .schwerpunkt-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .impressum-section,
    .datenschutz-section {
        padding: 0;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .contact-item {
        padding: 1.8rem;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .contact-item i {
        font-size: 1.8rem;
        width: 35px;
    }
    
    .contact-item h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .ablauf {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .ablauf-steps {
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .ablauf-step {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ablauf-content {
        gap: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .ablauf-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .ablauf-subtitle {
        margin-bottom: 1rem;
    }
    
    .ablauf-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .ablauf-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .ablauf-img {
        width: 400px;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
        background-color: #f8f9fa;
    }
}

/* Small Mobile Devices */
@media (max-width: 768px) {
    .action-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .action-image {
        height: auto;
        max-height: 380px;
        object-fit: contain;
    }
    
    .schwerpunkt-img {
        width: 85%;
        max-width: 280px;
        height: 180px;
        object-fit: cover;
        background-color: transparent;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(115, 83, 83, 0.15);
    }
    
    /* Ablauf Mobile Verbesserungen */
    .ablauf {
        padding: 80px 0;
    }
    
    .ablauf-steps {
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .ablauf-step {
        gap: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .ablauf-content {
        gap: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .ablauf-content h3 {
        color: #735353;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .ablauf-subtitle {
        color: #8B5A5A;
        font-size: 1rem;
        font-weight: 600;
        opacity: 1;
        margin-bottom: 1.2rem;
    }
    
    .ablauf-description {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.7;
        font-weight: 400;
        margin-bottom: 1.8rem;
    }
    
    .ablauf-number {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(115, 83, 83, 0.3);
    }
    
    .ablauf-img {
        width: 400px;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
        background-color: #f8f9fa;
    }
}

/* Very Small Landscape */
@media (max-width: 640px) and (orientation: landscape) {
    .navbar {
        padding: 0.3rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
        gap: 0.5rem;
        box-sizing: border-box;
    }
    
    .nav-logo-text h2 {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }
    
    .nav-logo-text span {
        font-size: 0.6rem;
        letter-spacing: 0.1px;
    }
    
    .nav-phone a {
        font-size: 0.7rem;
    }
    
    .hamburger {
        padding: 4px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }
    
    .hero {
        padding: 60px 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .about-text {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-logo {
        width: 200px;
        height: 200px;
    }
    
    .nav-menu {
        top: 40px;
        padding: 0.2rem 0;
    }
    
    .nav-menu .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        border-bottom: 1px solid #D0D0D0;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ablauf {
        height: auto;
        min-height: 100vh;
        padding: 70px 0;
    }
    
    .ablauf-steps {
        gap: 2.2rem;
        margin-top: 2.5rem;
    }
    
    .ablauf-step {
        gap: 1.5rem;
        margin-bottom: 2.2rem;
    }
    
    .ablauf-content {
        gap: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .ablauf-content h3 {
        font-size: 1.5rem;
        color: #735353;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.9rem;
    }
    
    .ablauf-subtitle {
        color: #8B5A5A;
        font-size: 0.95rem;
        font-weight: 600;
        opacity: 1;
        margin-bottom: 1.1rem;
    }
    
    .ablauf-description {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
        font-weight: 400;
        margin-bottom: 1.6rem;
    }
    
    .ablauf-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        font-weight: 700;
        box-shadow: 0 3px 12px rgba(115, 83, 83, 0.3);
    }
    
    .ablauf-img {
        width: 360px;
        height: 260px;
        object-fit: cover;
        border-radius: 15px;
        background-color: #f8f9fa;
    }
}

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

/* Loading animation for images */
.hero-placeholder,
.image-placeholder {
    animation: fadeIn 1s ease-in;
}

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

@media (max-width: 768px) {
    /* NAVIGATION - Entfernt, da bereits vorhanden */
  
    /* ABOUT - Mobile Verbesserungen */
    .about-image {
      text-align: center;
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .about-text {
      text-align: left;
      width: 100%;
    }
    
    .about-text h3 {
      text-align: center;
    }
    
    .about-logo {
      margin: 0 auto !important;
      display: block !important;
      width: 300px;
      height: 300px;
      text-align: center;
    }
    
    .qualification-item {
      white-space: nowrap;
      max-width: 100%;
      width: auto;
      margin: 0.2rem 0;
      padding: 0.6rem 0.8rem;
      font-size: 0.8rem;
      line-height: 1.3;
      border-radius: 15px;
    }
    
    .qualification-subitem {
      white-space: normal;
      max-width: 100%;
      font-size: 0.7rem;
      line-height: 1.4;
      padding: 0.3rem 0;
      margin-left: 0.5rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
  }

  

  
  