    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        padding: 0;
        border-top: 3px solid #2c7873;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cookie-content {
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }
    
    .cookie-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .cookie-header h3 {
        color: #2c7873;
        margin: 0;
        font-size: 1.2rem;
    }
    
    .cookie-close {
        background: none;
        border: none;
        font-size: 2rem;
        color: #2c7873;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cookie-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    
    .cookie-options {
        margin: 20px 0;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 10px;
        max-height: 40vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cookie-option {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .cookie-option:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .cookie-toggle-container {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        gap: 15px;
    }
    
    .cookie-toggle {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 26px;
        flex-shrink: 0;
    }
    
    .cookie-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
    }
    
    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }
    
    input:checked + .toggle-slider {
        background-color: #2c7873;
    }
    
    input:checked + .toggle-slider:before {
        transform: translateX(24px);
    }
    
    input:disabled + .toggle-slider {
        background-color: #95a5a6;
        cursor: not-allowed;
    }
    
    .cookie-status {
        font-size: 0.85rem;
        color: #666;
        font-weight: 500;
    }
    
    .cookie-info {
        flex: 1;
    }
    
    .cookie-info strong {
        display: block;
        margin-bottom: 5px;
        color: #333;
        font-size: 1rem;
    }
    
    .cookie-info p {
        margin: 0;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }
    
    .cookie-btn {
        padding: 14px 20px;
        border-radius: 8px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .cookie-btn.primary {
        background-color: #2c7873;
        color: white;
        order: 3;
    }
    
    .cookie-btn.primary:hover {
        background-color: #1f5d59;
    }
    
    .cookie-btn.secondary {
        background-color: #ff7e5f;
        color: white;
        order: 2;
    }
    
    .cookie-btn.secondary:hover {
        background-color: #e86a4c;
    }
    
    .cookie-btn.outline {
        background-color: transparent;
        color: #333;
        border: 2px solid #ddd;
        order: 1;
    }
    
    .cookie-btn.outline:hover {
        border-color: #2c7873;
        color: #2c7873;
    }
    
    .cookie-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .cookie-links a {
        color: #2c7873;
        text-decoration: none;
        padding: 8px 0;
    }
    
    .cookie-links a:hover {
        text-decoration: underline;
    }
    
    /* Tablet & Desktop Optimierungen */
    @media (min-width: 768px) {
        .cookie-banner {
            padding: 0;
            max-height: none;
            overflow-y: visible;
        }
        
        .cookie-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 25px;
        }
        
        .cookie-option {
            flex-direction: row;
            align-items: flex-start;
        }
        
        .cookie-toggle-container {
            margin-bottom: 0;
            margin-right: 20px;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        
        .cookie-toggle {
            margin-right: 0;
        }
        
        .cookie-buttons {
            flex-direction: row;
            justify-content: space-between;
        }
        
        .cookie-btn {
            width: auto;
            min-width: 160px;
            padding: 12px 25px;
        }
        
        .cookie-btn.outline {
            order: 1;
        }
        
        .cookie-btn.secondary {
            order: 2;
        }
        
        .cookie-btn.primary {
            order: 3;
        }
        
        .cookie-links {
            flex-direction: row;
            justify-content: center;
            gap: 20px;
        }
    }
    
    /* Desktop Optimierungen */
    @media (min-width: 1024px) {
        .cookie-content {
            max-width: 900px;
        }
        
        .cookie-options {
            padding: 20px;
        }
    }
    
    /* Sehr kleine Mobilgeräte */
    @media (max-width: 360px) {
        .cookie-content {
            padding: 15px;
        }
        
        .cookie-header h3 {
            font-size: 1.1rem;
        }
        
        .cookie-info strong {
            font-size: 0.95rem;
        }
        
        .cookie-info p {
            font-size: 0.8rem;
        }
        
        .cookie-btn {
            padding: 12px 15px;
            font-size: 0.95rem;
        }
    }