/* Farben aus dem Flyer */
:root {
    --color-teal: #4A9B9B;
    --color-pale-yellow: #FFF9E6;
    --color-orange: #FF8C42;
    --color-dark: #2C3E3E;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-light-gray: #F5F5F5;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    position: relative;
}

/* Pfotenabdrücke Hintergrundmuster für die gesamte Seite */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.08'%3E%3Cpath d='M50 75c-10-12-18-22-18-35 0-8 5-11 10-11 6 0 8 5 12 12 4-7 6-12 12-12 5 0 10 3 10 11 0 13-8 23-18 35z' fill='%234A9B9B'/%3E%3Ccircle cx='35' cy='35' r='5' fill='%234A9B9B'/%3E%3Ccircle cx='65' cy='35' r='5' fill='%234A9B9B'/%3E%3Cpath d='M30 48 Q35 50 40 48 Q45 50 50 48 Q55 50 60 48 Q65 50 70 48' stroke='%234A9B9B' stroke-width='2' fill='none'/%3E%3Ccircle cx='25' cy='22' r='4' fill='%234A9B9B'/%3E%3Ccircle cx='75' cy='22' r='4' fill='%234A9B9B'/%3E%3Ccircle cx='50' cy='17' r='3' fill='%234A9B9B'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 150px 150px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--color-teal);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    background-color: var(--color-teal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
}

.nav-subtitle {
    font-size: 0.9rem;
    margin-top: -5px;
}

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

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
    border-bottom: 2px solid var(--color-orange);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-pale-yellow) 0%, var(--color-teal) 100%);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pfotenabdrücke Hintergrundmuster */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.15'%3E%3Cpath d='M40 60c-8-10-15-18-15-28 0-6 4-9 8-9 5 0 7 4 10 10 3-6 5-10 10-10 4 0 8 3 8 9 0 10-7 18-15 28z' fill='%234A9B9B'/%3E%3Ccircle cx='28' cy='28' r='4' fill='%234A9B9B'/%3E%3Ccircle cx='52' cy='28' r='4' fill='%234A9B9B'/%3E%3Cpath d='M25 38 Q28 40 31 38 Q34 40 37 38 Q40 40 43 38 Q46 40 49 38' stroke='%234A9B9B' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='20' cy='18' r='3' fill='%234A9B9B'/%3E%3Ccircle cx='60' cy='18' r='3' fill='%234A9B9B'/%3E%3Ccircle cx='40' cy='14' r='2.5' fill='%234A9B9B'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    background-repeat: repeat;
    opacity: 0.4;
    z-index: 0;
}

/* Hero Galerie */
.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay für bessere Lesbarkeit */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 249, 230, 0.7) 0%, rgba(74, 155, 155, 0.6) 100%);
    z-index: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.slider-btn {
    background: var(--color-teal);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: bold;
    line-height: 1;
}

.slider-btn:hover {
    background: var(--color-orange);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-teal);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: var(--color-teal);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    width: 100%;
}

.logo-section {
    margin-bottom: 2rem;
}

.heart-paw-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    color: var(--color-teal);
}

.heart-paw-icon svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark);
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 500;
}

/* About Me Section */
.about-me {
    padding: 4rem 0;
    background-color: var(--color-white);
    position: relative;
}

.about-me-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-content {
    position: relative;
    z-index: 1;
}

.about-me-content h2 {
    color: var(--color-teal);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-me-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-me-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-teal);
}

.about-me-image {
    position: relative;
    z-index: 1;
}

.about-me-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-pale-yellow) 0%, var(--color-teal) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    color: var(--color-teal);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.placeholder-image p {
    color: var(--color-teal);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background-color: var(--color-pale-yellow);
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.12'%3E%3Cpath d='M40 60c-8-10-15-18-15-28 0-6 4-9 8-9 5 0 7 4 10 10 3-6 5-10 10-10 4 0 8 3 8 9 0 10-7 18-15 28z' fill='%234A9B9B'/%3E%3Ccircle cx='28' cy='28' r='4' fill='%234A9B9B'/%3E%3Ccircle cx='52' cy='28' r='4' fill='%234A9B9B'/%3E%3Cpath d='M25 38 Q28 40 31 38 Q34 40 37 38 Q40 40 43 38 Q46 40 49 38' stroke='%234A9B9B' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='20' cy='18' r='3' fill='%234A9B9B'/%3E%3Ccircle cx='60' cy='18' r='3' fill='%234A9B9B'/%3E%3Ccircle cx='40' cy='14' r='2.5' fill='%234A9B9B'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

.intro h2 {
    color: var(--color-teal);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-gallery {
    position: relative;
    width: 100%;
}

.work-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.work-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.work-slide.active {
    opacity: 1;
    z-index: 1;
}

.work-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.work-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.work-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-teal);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.work-dot.active {
    background: var(--color-teal);
    transform: scale(1.2);
}

.work-dot:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quote-box {
    background-color: var(--color-teal);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 10px;
    text-align: center;
}

.quote-text {
    color: var(--color-white);
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.services-preview h2 {
    color: var(--color-teal);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-card {
    background-color: var(--color-pale-yellow);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-teal);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    color: var(--color-teal);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--color-teal);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--color-text);
    line-height: 1.6;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

/* Applications Section */
.applications {
    padding: 4rem 0;
    background-color: var(--color-pale-yellow);
    position: relative;
}

.applications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.12'%3E%3Cpath d='M40 60c-8-10-15-18-15-28 0-6 4-9 8-9 5 0 7 4 10 10 3-6 5-10 10-10 4 0 8 3 8 9 0 10-7 18-15 28z' fill='%234A9B9B'/%3E%3Ccircle cx='28' cy='28' r='4' fill='%234A9B9B'/%3E%3Ccircle cx='52' cy='28' r='4' fill='%234A9B9B'/%3E%3Cpath d='M25 38 Q28 40 31 38 Q34 40 37 38 Q40 40 43 38 Q46 40 49 38' stroke='%234A9B9B' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='20' cy='18' r='3' fill='%234A9B9B'/%3E%3Ccircle cx='60' cy='18' r='3' fill='%234A9B9B'/%3E%3Ccircle cx='40' cy='14' r='2.5' fill='%234A9B9B'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

.applications-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.heart-paw-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--color-teal);
}

.heart-paw-small svg {
    width: 100%;
    height: 100%;
}

.applications h2 {
    color: var(--color-teal);
    font-size: 2.5rem;
}

.applications-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.application-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: 8px;
}

.check-icon {
    color: var(--color-teal);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-pale-yellow) 0%, var(--color-teal) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-teal);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark);
}

/* Treatments */
.treatments {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.treatment-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--color-pale-yellow);
    border-radius: 10px;
    border-left: 5px solid var(--color-teal);
}

.treatment-icon {
    color: var(--color-teal);
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.treatment-content h2 {
    color: var(--color-teal);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.treatment-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.treatment-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.treatment-content li {
    margin-bottom: 0.5rem;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.pricing-note {
    background-color: var(--color-pale-yellow);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
    border-left: 4px solid var(--color-orange);
}

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

.pricing-card {
    background-color: var(--color-pale-yellow);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--color-teal);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--color-orange);
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card h3 {
    color: var(--color-teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-teal);
}

.price-unit {
    font-size: 1rem;
    color: var(--color-text);
    margin-left: 0.5rem;
}

.price-description {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--color-text);
}

.price-features {
    list-style: none;
    margin-left: 0;
}

.price-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: bold;
}

.price-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text);
    font-style: italic;
}

.pricing-info {
    background-color: var(--color-pale-yellow);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-teal);
}

.pricing-info h3 {
    color: var(--color-teal);
    margin-bottom: 1rem;
}

.pricing-info ul {
    margin-left: 2rem;
}

.pricing-info li {
    margin-bottom: 0.5rem;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--color-teal);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--color-teal);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-top: 0.5rem;
}

.contact-quote {
    background-color: var(--color-teal);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-quote p {
    color: var(--color-white);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.contact-form-wrapper {
    background-color: var(--color-pale-yellow);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    color: var(--color-teal);
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-teal);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-orange);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--color-pale-yellow);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-teal);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.9;
}

.footer-contact h4,
.footer-nav h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-links .separator {
    opacity: 0.6;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.legal-section {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: var(--color-teal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-pale-yellow);
}

.legal-section h3 {
    color: var(--color-teal);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
}

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

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-section a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

.legal-note {
    background-color: var(--color-pale-yellow);
    padding: 1rem;
    border-left: 4px solid var(--color-orange);
    border-radius: 5px;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-teal);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-slider-controls {
        bottom: 10px;
        padding: 8px 15px;
        gap: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .about-me-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-me-image {
        order: -1; /* Bild zuerst auf mobilen Geräten */
    }

    .about-me-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-gallery {
        order: -1; /* Galerie zuerst auf mobilen Geräten */
    }

    .intro h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .treatment-item {
        flex-direction: column;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 0;
        min-height: 400px;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .brand-name {
        font-size: 2rem;
    }

    .hero-slider-controls {
        bottom: 5px;
        padding: 5px 10px;
        gap: 8px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .about-me,
    .intro,
    .services-preview,
    .applications,
    .treatments,
    .pricing,
    .contact,
    .legal-content {
        padding: 2rem 0;
    }

    .intro-wrapper {
        gap: 1.5rem;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    .about-me-wrapper {
        gap: 1.5rem;
    }

    .about-me-content h2 {
        font-size: 1.8rem;
    }

    .about-me-content p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links .separator {
        display: none;
    }

    .legal-section {
        padding: 0 1rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }
}
