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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.8;
    color: #000;
    background-color: #fff;
    font-size: 18px;
}

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

/* Header - Simplified without logo */
header {
    background: linear-gradient(135deg, #dcd6c8 0%, #e8e3d6 50%, #f0ebe0 100%);
    color: #3d3d3d;
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #b8b0a0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-title {
    color: #3d3d3d;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.logo-subtitle {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.2;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0 auto;
}

.nav-links a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.nav-links a:hover {
    color: #2d2d2d;
    background: rgba(184, 176, 160, 0.3);
    border-radius: 8px;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #3d3d3d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Logo */
.hero {
    background: #2d5f6d;
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 100px;
    padding: 80px 20px 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-logo img {
    height: 200px;
    width: 350px;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #f5f1e8;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.hero-logo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    max-width: 900px;
    line-height: 1.6;
}

.hero-content p:last-of-type {
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    background: #f5f1e8;
    color: #2d5f6d;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid #2d5f6d;
}

.cta-button:hover {
    background: #fff;
    color: #2d5f6d;
    border-color: #1a4a54;
}

/* Philosophy Pillars in Hero */
.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.pillar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.pillar p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #2d5f6d;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: 5px solid #2d5f6d;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: #f5f1e8;
}

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

.doctor-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

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

.doctor-image .placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.about-text h3 {
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-text p {
    margin-bottom: 2rem;
    color: #000;
    font-size: 1.1rem;
}

.about-text h3 {
    color: #000;
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.focus-areas {
    list-style: none;
    padding: 0;
    margin: 2rem 0 3rem 0;
}

.focus-areas li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}

.focus-areas li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f6d;
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-button-secondary {
    display: inline-block;
    background: #2d5f6d;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 2rem;
    border: 3px solid #2d5f6d;
}

.cta-button-secondary:hover {
    background: white;
    color: #2d5f6d;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-badge {
    background: #ecf0f1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c3e50;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: -1rem auto 4rem auto;
    color: #000;
    font-size: 1.15rem;
    line-height: 1.8;
}

.services-category {
    margin-bottom: 4rem;
}

.category-title {
    color: #2d5f6d;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f5f1e8;
    border-left: 8px solid #2d5f6d;
    font-weight: bold;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #ddd;
}

.service-card:hover {
    border-color: #2d5f6d;
    background: #f5f1e8;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-card h4 {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

.service-card p {
    color: #000;
    line-height: 1.8;
    font-size: 1rem;
}

.services-closing {
    text-align: center;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    color: #2d5f6d;
    font-size: 1.15rem;
    font-weight: 600;
    border: 3px solid #2d5f6d;
}

/* Philosophy Section */
.philosophy {
    background: white;
}

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

.philosophy-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    border: 3px solid #2d5f6d;
}

.philosophy-card:hover {
    background: #f5f1e8;
}

.philosophy-card p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

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

/* Patient Forms Section */
.patient-forms {
    background: #f5f1e8;
}

.forms-intro {
    text-align: center;
    max-width: 900px;
    margin: -1rem auto 4rem auto;
    color: #000;
    font-size: 1.15rem;
    line-height: 1.8;
}

.forms-content {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.form-download-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #2d5f6d;
    max-width: 600px;
    transition: all 0.3s ease;
}

.form-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 95, 109, 0.2);
    border-color: #1a4a54;
}

.form-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #2d5f6d;
}

.form-download-card h3 {
    color: #2d5f6d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.form-download-card p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #2d5f6d;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 3px solid #2d5f6d;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: white;
    color: #2d5f6d;
    transform: scale(1.05);
}

.download-icon {
    font-size: 1.3rem;
}

.forms-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    color: #2d5f6d;
    font-size: 1rem;
    border-left: 5px solid #2d5f6d;
}

.documents-checklist {
    max-width: 900px;
    margin: 4rem auto 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #2d5f6d;
}

.documents-checklist h3 {
    color: #2d5f6d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.checklist-intro {
    text-align: center;
    color: #000;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.checklist-section:last-child {
    margin-bottom: 0;
}

.checklist-section h4 {
    color: #2d5f6d;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2d5f6d;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid #e0e0e0;
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f6d;
    font-weight: bold;
    font-size: 1.5rem;
    top: 1rem;
}

.checklist-items.optional li::before {
    content: '○';
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: -1rem auto 4rem auto;
    color: #000;
    font-size: 1.15rem;
    line-height: 1.8;
}

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

.contact-info h3 {
    color: #000;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #2d5f6d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    border: 3px solid #2d5f6d;
}

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

.form-group label {
    display: block;
    margin-bottom: 1rem;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f6d;
}

.submit-btn {
    background: #2d5f6d;
    color: white;
    padding: 18px 40px;
    border: 3px solid #2d5f6d;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
}

.submit-btn:hover {
    background: white;
    color: #2d5f6d;
}

/* Map Section */
.map-section {
    margin-top: 5rem;
}

.map-section h3 {
    color: #000;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #2d5f6d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Footer */
footer {
    background: #1a4a54;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f5f1e8;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #f5f1e8;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Removed animations for simplicity */

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, #dcd6c8 0%, #e8e3d6 100%);
        flex-direction: column;
        padding: 1rem;
        margin: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        border-bottom: 3px solid #b8b0a0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-logo img {
        height: 150px;
        width: 280px;
        max-width: 320px;
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        line-height: 1.55;
    }

    .philosophy-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .pillar {
        padding: 1.75rem 1.25rem;
    }

    .pillar h3 {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .doctor-image {
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .services-intro,
    .contact-intro {
        font-size: 1.05rem;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 0;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding: 60px 15px;
        margin-top: 80px;
    }

    .hero-logo img {
        height: 120px;
        width: 220px;
        max-width: 260px;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

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

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .philosophy-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .pillar {
        padding: 1.5rem 1rem;
    }

    .pillar h3 {
        font-size: 1.1rem;
    }

    .pillar p {
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }
}

/* Articles/Ratgeber Page Styles */
.articles-section {
    padding: 100px 0;
    background: #f5f1e8;
}

.article-card {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    border: 3px solid #2d5f6d;
    box-shadow: 0 4px 15px rgba(45, 95, 109, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 95, 109, 0.2);
    border-color: #1a4a54;
}

.article-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.article-card h2 {
    color: #2d5f6d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}

.article-card p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-card strong {
    color: #2d5f6d;
    font-weight: 600;
}

.article-steps {
    background: #f5f1e8;
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 5px solid #2d5f6d;
}

.article-steps p {
    margin-bottom: 1rem;
}

.article-steps p:last-child {
    margin-bottom: 0;
}

.article-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.article-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid #e0e0e0;
}

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

.article-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f6d;
    font-weight: bold;
    font-size: 1.3rem;
}

.article-cta {
    display: inline-block;
    background: #2d5f6d;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.05rem;
    margin-top: 1rem;
    border: 3px solid #2d5f6d;
    transition: all 0.3s ease;
}

.article-cta:hover {
    background: white;
    color: #2d5f6d;
    transform: translateX(5px);
}

/* Impressum Page Styles */
.impressum-section {
    padding: 100px 0;
    background: #f5f1e8;
}

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

.impressum-block {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 5px solid #2d5f6d;
    box-shadow: 0 2px 10px rgba(45, 95, 109, 0.1);
}

.impressum-block h2 {
    color: #2d5f6d;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.impressum-block h3 {
    color: #2d5f6d;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.impressum-block p {
    color: #000;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.impressum-block a {
    color: #2d5f6d;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.impressum-block a:hover {
    color: #1a4a54;
}

.impressum-block strong {
    color: #2d5f6d;
    font-weight: 600;
}

.impressum-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.impressum-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #000;
    font-size: 1.05rem;
    line-height: 1.8;
}

.impressum-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #2d5f6d;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d5f6d;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent h3 {
    color: #f5f1e8;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.cookie-consent p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent a {
    color: #f5f1e8;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent a:hover {
    color: white;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #f5f1e8;
    color: #2d5f6d;
    border: 2px solid #f5f1e8;
}

.cookie-btn-accept:hover {
    background: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive cookie banner */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.5rem 1rem;
    }

    .cookie-consent h3 {
        font-size: 1.2rem;
    }

    .cookie-consent p {
        font-size: 0.95rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Responsive styles for impressum */
@media (max-width: 768px) {
    .impressum-block {
        padding: 2rem;
    }

    .impressum-block h2 {
        font-size: 1.4rem;
    }

    .impressum-block h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .impressum-block {
        padding: 1.5rem;
    }

    .impressum-block h2 {
        font-size: 1.3rem;
    }

    .impressum-block p {
        font-size: 1rem;
    }
}

/* Responsive styles for articles */
@media (max-width: 768px) {
    .article-card {
        padding: 2rem;
    }

    .article-card h2 {
        font-size: 1.5rem;
    }

    .article-card p {
        font-size: 1rem;
    }

    .article-icon {
        font-size: 2.5rem;
    }

    .article-steps {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-card {
        padding: 1.5rem;
    }

    .article-card h2 {
        font-size: 1.3rem;
    }

    .article-icon {
        font-size: 2rem;
    }
}

/* Responsive styles for patient forms */
@media (max-width: 768px) {
    .form-download-card {
        padding: 2rem;
        max-width: 100%;
    }

    .form-icon {
        font-size: 3rem;
    }

    .form-download-card h3 {
        font-size: 1.5rem;
    }

    .form-download-card p {
        font-size: 1rem;
    }

    .download-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .forms-note {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .documents-checklist {
        padding: 2rem;
    }

    .documents-checklist h3 {
        font-size: 1.5rem;
    }

    .checklist-intro {
        font-size: 1rem;
    }

    .checklist-section h4 {
        font-size: 1.2rem;
    }

    .checklist-items li {
        font-size: 1rem;
        padding: 0.8rem 0 0.8rem 2.5rem;
    }

    .checklist-items li::before {
        font-size: 1.3rem;
        top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-download-card {
        padding: 1.5rem;
    }

    .form-icon {
        font-size: 2.5rem;
    }

    .form-download-card h3 {
        font-size: 1.3rem;
    }

    .download-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .documents-checklist {
        padding: 1.5rem;
    }

    .documents-checklist h3 {
        font-size: 1.3rem;
    }

    .checklist-intro {
        font-size: 0.95rem;
    }

    .checklist-section h4 {
        font-size: 1.1rem;
    }

    .checklist-items li {
        font-size: 0.95rem;
        padding: 0.7rem 0 0.7rem 2rem;
    }

    .checklist-items li::before {
        font-size: 1.2rem;
        top: 0.7rem;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    max-width: 600px;
    width: 90%;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border-left: 5px solid #2e7d32;
}

.notification-error {
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    border-left: 5px solid #c62828;
}

.notification-warning {
    background: linear-gradient(135deg, #ff9800 0%, #fb8c00 100%);
    color: white;
    border-left: 5px solid #e65100;
}

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

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.notification-message {
    font-size: 0.95rem;
    opacity: 0.95;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem 0;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .notification {
        top: 80px;
        padding: 1rem 1.5rem;
        width: 95%;
    }

    .notification-icon {
        font-size: 1.5rem;
    }

    .notification-title {
        font-size: 1rem;
    }

    .notification-message {
        font-size: 0.9rem;
    }
}

/* Team Page Styles */
.team-section {
    padding: 4rem 0;
    background: #fff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-main-doctor {
    margin-bottom: 5rem;
}

.doctor-profile {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doctor-profile-image {
    flex-shrink: 0;
}

.doctor-profile-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.doctor-profile-content {
    flex: 1;
}

.doctor-profile-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.doctor-title {
    font-size: 1.3rem;
    color: #34495e;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.doctor-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.doctor-bio {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.doctor-bio p {
    margin-bottom: 1rem;
    color: #555;
}

.doctor-specialties h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.doctor-specialties ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}

.doctor-specialties li {
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.doctor-specialties li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.team-assistants {
    margin-bottom: 4rem;
}

.assistants-title {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.assistants-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.8;
}

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

.team-member-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 2rem;
}

.team-member-info h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-description {
    color: #555;
    line-height: 1.7;
}

.team-cta {
    text-align: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.team-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.team-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.team-cta .cta-button {
    background: white;
    color: #3498db;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.team-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .doctor-profile {
        flex-direction: column;
        padding: 2rem;
    }

    .doctor-profile-image img {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .doctor-specialties ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 2rem 0;
    }

    .team-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .doctor-profile-content h3 {
        font-size: 1.6rem;
    }

    .doctor-title {
        font-size: 1.1rem;
    }

    .assistants-title {
        font-size: 1.6rem;
    }

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

    .team-member-image {
        height: 250px;
    }

    .team-cta h3 {
        font-size: 1.5rem;
    }

    .team-cta p {
        font-size: 1rem;
    }
}