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

    :root {
        --primary-color: #f97316;
        --primary-dark: #ea580c;
        --secondary-color: #dc2626;
        --background-light: #fff7ed;
        --background-white: #ffffff;
        --text-dark: #1f2937;
        --text-medium: #374151;
        --text-light: #6b7280;
        --text-lighter: #9ca3af;
        --border-light: #e5e7eb;
        --border-medium: #d1d5db;
        --success-color: #10b981;
        --error-color: #ef4444;
        --shadow-light: rgba(0, 0, 0, 0.1);
        --shadow-medium: rgba(0, 0, 0, 0.15);
        --border-radius: 8px;
        --border-radius-lg: 16px;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-medium);
        background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    }

    a {
        color: var(--text-medium);
        text-decoration: none;
    }

    a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    .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 2px 20px var(--shadow-light);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-icon {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 8px;
        border-radius: var(--border-radius);
        color: white;
        font-size: 24px;
    }

    .logo-text h1 {
        font-size: 24px;
        font-weight: bold;
        color: var(--text-dark);
    }

    .logo-text p {
        font-size: 14px;
        color: var(--primary-dark);
    }

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

    .nav-link {
        color: var(--text-light);
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--background-light);
        color: var(--primary-dark);
    }

    .mobile-menu-toggle {
        display: none;
        background: var(--background-light);
        color: var(--primary-dark);
        border: none;
        padding: 8px;
        border-radius: var(--border-radius);
        cursor: pointer;
        font-size: 20px;
    }

    /* Hero Section */
    .hero {
        padding: 140px 0 80px;
        text-align: center;
        background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero .highlight {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero p {
        font-size: 1.25rem;
        color: var(--text-light);
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 4rem;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 16px 32px;
        border: none;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    }

    .btn-secondary {
        border: 2px solid var(--primary-color);
        color: var(--primary-dark);
        padding: 14px 32px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        background: transparent;
    }

    .btn-secondary:hover {
        background: var(--background-light);
        transform: translateY(-2px);
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: var(--border-radius-lg);
        box-shadow: 0 4px 15px var(--shadow-light);
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: var(--text-light);
        font-weight: 500;
    }

    /* Services Section */
    .services {
        padding: 80px 0;
        background: var(--background-white);
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.25rem;
        color: var(--text-light);
        max-width: 800px;
        margin: 0 auto 4rem;
    }

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

    .service-card {
        background: linear-gradient(135deg, var(--background-light) 0%, #fef2f2 100%);
        padding: 2.5rem;
        border-radius: var(--border-radius-lg);
        box-shadow: 0 4px 15px var(--shadow-light);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px var(--shadow-medium);
    }

    .service-icon {
        font-size: 2.5rem;
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
    }

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

    .service-description {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .service-features {
        list-style: none;
    }

    .service-features li {
        display: flex;
        align-items: center;
        color: var(--text-light);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .service-features li::before {
        content: "★";
        color: var(--primary-color);
        margin-right: 8px;
        font-size: 12px;
    }

    /* About Section */
    .about {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--background-light) 0%, #fef2f2 100%);
    }

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

    .about-text p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .about-text p:first-of-type {
        font-size: 1.1rem;
    }

    .about-card {
        background: var(--background-white);
        padding: 2.5rem;
        border-radius: var(--border-radius-lg);
        box-shadow: 0 10px 30px var(--shadow-light);
    }

    .about-card h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

    .benefits-list {
        list-style: none;
    }

    .benefits-list li {
        display: flex;
        align-items: center;
        color: var(--text-medium);
        margin-bottom: 1rem;
    }

    .benefits-list li::before {
        content: "★";
        color: var(--primary-color);
        margin-right: 12px;
        font-size: 16px;
    }

    .page-content {
        margin: 80px 0 0 0;
        padding: 40px 0;
    }

    /* Contact Section */
    .contact {
        padding: 80px 0;
        background: var(--background-white);
    }

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

    .contact-info h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        color: var(--primary-color);
        font-size: 20px;
        margin-right: 1rem;
        min-width: 24px;
        vertical-align: top;
    }

    .contact-form {
        background: linear-gradient(135deg, var(--background-light) 0%, #fef2f2 100%);
        padding: 2.5rem;
        border-radius: var(--border-radius-lg);
        box-shadow: 0 4px 15px var(--shadow-light);
    }

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

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group label {
        display: block;
        color: var(--text-medium);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--border-medium);
        border-radius: var(--border-radius);
        font-size: 16px;
        transition: all 0.3s ease;
        background: var(--background-white);
        font-family: inherit;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    }

    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

    /* Alert Messages */
    .alert {
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
    }

    .alert-success {
        background: #ecfdf5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }

    .alert-error {
        background: #fef2f2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }

    /* Security Info */
    .security-info {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-top: 1rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 6px;
    }

    /* Hidden Honeypot */
    .honeypot {
        display: none !important;
    }

    /* Storage Buttons */
    .storage-buttons {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .btn-storage {
        padding: 8px 16px;
        border: 1px solid var(--border-medium);
        background: var(--background-white);
        color: var(--text-light);
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .btn-storage:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-1px);
    }

    .btn-storage.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    /* Storage Sections */
    .storage-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: var(--border-radius);
        border: 1px solid var(--border-light);
        max-height: 250px;
        overflow-y: auto;
        display: none;
    }

    .storage-section.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .storage-section h4 {
        margin-bottom: 1rem;
        color: var(--text-medium);
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 0.5rem;
    }

    .storage-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px;
        margin-bottom: 8px;
        background: var(--background-white);
        border-radius: 6px;
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
    }

    .storage-item:hover {
        border-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
    }

    .storage-item-info {
        flex: 1;
        min-width: 0;
    }

    .storage-item-name {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .storage-item-details {
        font-size: 12px;
        color: var(--text-light);
        line-height: 1.4;
    }

    .storage-item-preview {
        font-size: 11px;
        color: var(--text-lighter);
        margin-top: 4px;
        max-width: 300px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .storage-actions {
        display: flex;
        gap: 6px;
        margin-left: 12px;
    }

    .btn-mini {
        padding: 4px 8px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 11px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-load {
        background: var(--success-color);
        color: white;
    }

    .btn-load:hover {
        background: #059669;
        transform: scale(1.05);
    }

    .btn-delete {
        background: var(--error-color);
        color: white;
    }

    .btn-delete:hover {
        background: #dc2626;
        transform: scale(1.05);
    }

    .btn-view {
        background: #3b82f6;
        color: white;
    }

    .btn-view:hover {
        background: #2563eb;
        transform: scale(1.05);
    }

    .empty-storage {
        text-align: center;
        color: var(--text-lighter);
        font-style: italic;
        padding: 2rem 1rem;
    }

    .storage-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: var(--text-light);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border-light);
    }

    .auto-save-indicator {
        position: fixed;
        top: 100px;
        right: 20px;
        background: var(--success-color);
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 14px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .auto-save-indicator.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Modal für Entwurf-Preview */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .modal-content {
        background: var(--background-white);
        padding: 2rem;
        border-radius: 12px;
        width: 90%;
        max-width: 500px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .modal-close {
        background: var(--error-color);
        color: white;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preview-field {
        margin-bottom: 1rem;
    }

    .preview-label {
        font-weight: 600;
        color: var(--text-medium);
        margin-bottom: 0.25rem;
        display: block;
    }

    .preview-value {
        color: var(--text-light);
        padding: 8px 12px;
        background: #f9fafb;
        border-radius: 4px;
        border: 1px solid var(--border-light);
    }

    /* Footer */
    .footer {
        background: var(--text-dark);
        color: white;
        padding: 3rem 0 2rem;
    }

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

    .footer-section h3 {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .footer-section p,
    .footer-section li {
        color: var(--text-lighter);
        margin-bottom: 0.5rem;
    }

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

    .footer-bottom {
        border-top: 1px solid var(--text-medium);
        padding-top: 2rem;
        text-align: center;
        color: var(--text-lighter);
    }

    .footer a {
        color: var(--text-lighter);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--background-white);
            box-shadow: 0 2px 10px var(--shadow-light);
            padding: 1rem;
        }

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

        .mobile-menu-toggle {
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

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

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

        .form-row {
            grid-template-columns: 1fr;
        }

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

        .storage-buttons {
            justify-content: center;
        }
    }

    /* Animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

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

    /* Print Styles */
    @media print {

        .navbar,
        .storage-buttons,
        .storage-section,
        .modal {
            display: none !important;
        }

        body {
            background: white !important;
        }

        .hero {
            padding-top: 2rem !important;
        }
    }