* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f7fa;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    min-height: 70px;
}

.logo img {
    height: 65px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 6px;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4caf50, #388e3c);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #388e3c;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 5px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #388e3c;
}

.btn-termin {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(92, 184, 92, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-termin::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;
}

.btn-termin:hover::before {
    left: 100%;
}

.btn-termin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(92, 184, 92, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.google-rating-container {
    text-align: center;
    padding: 30px 0;
    background: #fff;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.rating-label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-score {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(92, 184, 92, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(92, 184, 92, 0.4);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.welcome p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #388e3c);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 45px rgba(92, 184, 92, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d2d2d 0%, #388e3c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(129, 199, 132, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: #4caf50;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #4caf50;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #388e3c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(129, 199, 132, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Leistungen Detail */
.leistungen-detail {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.leistungen-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.leistung-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4caf50, #388e3c);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.leistung-card:hover::before {
    transform: scaleX(1);
}

.leistung-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(92, 184, 92, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #388e3c;
    transition: all 0.3s;
}

.leistung-card:hover .card-icon svg {
    stroke: #4caf50;
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.leistung-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.leistung-card h4 {
    font-size: 1.1rem;
    color: #388e3c;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.leistung-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.card-details span {
    color: #388e3c;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Praxis Content */
.praxis-content {
    padding: 80px 0;
}

.content-box {
    margin-bottom: 40px;
}

.content-box h2 {
    color: #388e3c;
    margin-bottom: 20px;
}

.praxis-image {
    margin: 40px 0;
    text-align: center;
}

.praxis-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Termin Section */
.termin-section {
    padding: 80px 0;
}

.termin-info {
    max-width: 800px;
    margin: 0 auto;
}

.libdoc-widget {
    margin: 40px 0;
}

.alternative-contact {
    margin-top: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    color: #388e3c;
    text-decoration: none;
    margin: 20px 0;
    font-weight: 600;
}

.opening-hours,
.notdienst {
    margin-top: 30px;
}

.opening-hours ul {
    list-style: none;
    margin-top: 15px;
}

.opening-hours li {
    padding: 5px 0;
}

/* Kontakt Section */
.kontakt-section {
    padding: 80px 0;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: #388e3c;
    margin-bottom: 10px;
}

.kontakt-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.map-container {
    margin-top: 60px;
}

.map-container h2 {
    color: #388e3c;
    margin-bottom: 30px;
}

.map-container iframe {
    border-radius: 10px;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: #388e3c;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #388e3c;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #388e3c;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}

.mobile-nav-menu li {
    margin-bottom: 10px;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
}

.mobile-nav-menu a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #388e3c;
}

.mobile-nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-nav-menu > li > a .arrow {
    margin-left: auto;
}

.mobile-nav-menu .arrow {
    color: #388e3c;
    font-size: 16px;
    transition: transform 0.3s;
}

.mobile-dropdown-menu .arrow {
    display: none;
}

.mobile-termin-btn {
    display: none !important;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 0;
    margin-top: 5px;
    margin-left: auto;
    width: 80%;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 5px;
}

.mobile-dropdown-menu a {
    padding: 10px 15px;
    font-size: 13px;
    background: transparent;
    border-left: 2px solid #388e3c;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
}

.mobile-dropdown-menu a:hover {
    background: rgba(76, 175, 80, 0.1);
    padding-left: 20px;
}

/* Verbesserte Touch-Targets für Mobile */
@media (max-width: 768px) {
    .mobile-nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mobile-dropdown-menu a {
        min-height: 40px;
    }
    
    /* Verhindere Zoom bei Touch */
    input, button, select, textarea {
        font-size: 16px;
    }
    
    /* Verbesserte Scroll-Performance */
    .mobile-menu {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Sticky Button im Mobile Menu */
    .mobile-termin-btn {
        position: sticky;
        bottom: 0;
        margin-top: auto;
        background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1), 0 6px 0 #1b5e20;
    }
    
    /* Mobile Menu Container Flexbox */
    .mobile-menu {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-nav-menu {
        flex: 1;
        overflow-y: auto;
    }
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.mobile-overlay.active {
    display: block;
}

/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Call Button */
.mobile-call-button {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(56, 142, 60, 0.4);
    z-index: 999;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}

.mobile-call-button:active {
    transform: scale(0.95);
}

.mobile-call-button svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(56, 142, 60, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(56, 142, 60, 0.6), 0 0 0 10px rgba(56, 142, 60, 0.1);
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    color: #388e3c;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    color: #666;
    line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 30px 20px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cookie-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(56, 142, 60, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 142, 60, 0.4);
}

.btn-decline {
    background: #fff;
    color: #666;
    padding: 12px 30px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-decline:hover {
    border-color: #388e3c;
    color: #388e3c;
}

/* Doctolib Button */
.doctolib-button-container {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.btn-doctolib {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0596de 0%, #0477b8 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(5, 150, 222, 0.3);
    transition: all 0.3s;
}

.btn-doctolib:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5, 150, 222, 0.4);
}

.btn-doctolib svg {
    width: 24px;
    height: 24px;
}

.doctolib-info {
    margin-top: 20px;
    color: #666;
    font-size: 1rem;
}

/* Anfahrt Section */
.anfahrt-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card svg {
    width: 50px;
    height: 50px;
    color: #388e3c;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.tutorial-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.tutorial-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.tutorial-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.tutorial-step.reverse {
    direction: rtl;
}

.tutorial-step.reverse > * {
    direction: ltr;
}

.step-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.step-image img {
    width: 100%;
    display: block;
}

.step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #388e3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.map-section {
    margin-top: 80px;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.address-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    font-size: 1.1rem;
    color: #333;
}

.address-footer svg {
    width: 30px;
    height: 30px;
    color: #388e3c;
    flex-shrink: 0;
}

/* Karriere Section */
.karriere-benefits {
    padding: 60px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card svg {
    width: 50px;
    height: 50px;
    color: #388e3c;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

.jobs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.jobs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.jobs-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    margin-bottom: 20px;
}

.job-header h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.job-type {
    display: inline-block;
    background: #e8f5e9;
    color: #388e3c;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-description {
    margin-bottom: 25px;
}

.job-description p {
    color: #666;
    line-height: 1.8;
}

.job-details h4 {
    color: #388e3c;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.job-details ul {
    list-style: none;
    padding: 0;
}

.job-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.job-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #388e3c;
    font-weight: bold;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-apply svg {
    width: 20px;
    height: 20px;
}

.btn-apply:hover {
    transform: translateY(-2px);
}

.btn-admin {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-admin:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.btn-admin svg {
    width: 16px;
    height: 16px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-post h2 {
    color: #388e3c;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e8f5e9;
}

.blog-content h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content ul {
    margin: 15px 0 20px 20px;
    line-height: 1.8;
}

.blog-content li {
    color: #666;
    margin-bottom: 10px;
}

.blog-content strong {
    color: #388e3c;
    font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 8px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 6px 4px;
    }
    
    .btn-termin {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 6px;
    }
    
    .nav-menu a {
        font-size: 11px;
        padding: 6px 3px;
    }
    
    .btn-termin {
        padding: 5px 10px;
        font-size: 10px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }
    
    .btn-termin {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-termin-btn {
        display: none !important;
    }
    
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-content h3 {
        font-size: 1.1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-decline {
        width: 100%;
    }
    
    .doctolib-button-container {
        padding: 40px 20px;
    }
    
    .btn-doctolib {
        padding: 16px 35px;
        font-size: 16px;
    }


    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    body {
        padding-top: 70px;
    }
    
    .navbar .container {
        padding: 10px 20px;
        min-height: 60px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .google-rating {
        padding: 6px 12px;
    }
    
    .rating-label {
        font-size: 12px;
    }
    
    .rating-stars {
        font-size: 16px;
    }
    
    .rating-score {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .welcome,
    .services,
    .cta,
    .leistungen-detail,
    .praxis-content,
    .termin-section,
    .kontakt-section,
    .legal-content {
        padding: 50px 0;
    }
    
    .welcome h2,
    .services h2,
    .cta h2,
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header {
        padding: 50px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .anfahrt-section {
        padding: 40px 0;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .tutorial-section h2,
    .map-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .tutorial-step {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .tutorial-step.reverse {
        direction: ltr;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}
