 /* Schaden Melden Page Styles mit "schaden-" Prefix */

    /* Hero Section */
    .schaden-page-hero {
        padding: 9rem 0 2.5rem;
        background: #1E73BE;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .schaden-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
    }

    .schaden-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .schaden-hero-background::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 60%;
        background: rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    }

    .schaden-page-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    .schaden-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        backdrop-filter: blur(10px);
    }

    .schaden-breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .schaden-breadcrumb a:hover {
        color: #ffffff;
    }

    .schaden-breadcrumb i {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .schaden-breadcrumb span {
        color: #ffffff;
        font-weight: 500;
    }

    .schaden-page-hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #ffffff;
        line-height: 1.2;
    }

    .schaden-page-hero-description {
        font-size: 1.15rem;
        max-width: 700px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        margin: 0;
    }

    /* Process Steps */
    .schaden-process-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .schaden-process-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .schaden-process-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .schaden-section-subtitle {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .schaden-subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .schaden-section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .schaden-section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
    }

    .schaden-process-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .schaden-step {
        text-align: center;
        position: relative;
    }

    .schaden-step::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -1.5rem;
        width: calc(100% - 80px);
        height: 2px;
        background: #e8e8e8;
        z-index: -1;
    }

    .schaden-step:last-child::after {
        display: none;
    }

    .schaden-step-number {
        width: 80px;
        height: 80px;
        background: #1E73BE;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
    }

    .schaden-step h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.75rem;
    }

    .schaden-step p {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    /* Form Section */
    .schaden-form-section {
        padding: 5rem 0;
        background: #ffffff;
    }

    .schaden-form-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }

    .schaden-form-wrapper {
        background: #ffffff;
        border: 1px solid #e8e8e8;
        padding: 3rem;
    }

    .schaden-form-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #f8f9fa;
    }

    .schaden-form-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.5rem;
    }

    .schaden-form-header p {
        font-size: 0.9rem;
        color: #666666;
        margin: 0;
    }

    .required {
        color: #dc3545;
    }

    /* Steps Indicator */
    .schaden-steps-indicator {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
        position: relative;
    }

    .schaden-steps-indicator::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        height: 2px;
        background: #e8e8e8;
        z-index: 0;
    }

    .schaden-step-indicator {
        text-align: center;
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .schaden-step-indicator-number {
        width: 40px;
        height: 40px;
        background: #e8e8e8;
        color: #999999;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin: 0 auto 0.5rem;
        transition: all 0.3s ease;
    }

    .schaden-step-indicator.active .schaden-step-indicator-number {
        background: #1E73BE;
        color: #ffffff;
    }

    .schaden-step-indicator.completed .schaden-step-indicator-number {
        background: #28a745;
        color: #ffffff;
    }

    .schaden-step-indicator span {
        font-size: 0.85rem;
        color: #999999;
        font-weight: 500;
    }

    .schaden-step-indicator.active span {
        color: #1E73BE;
        font-weight: 600;
    }

    /* Form Steps */
    .schaden-form-step {
        display: none;
    }

    .schaden-form-step.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .schaden-step-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f8f9fa;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .schaden-step-title i {
        color: #1E73BE;
    }

    /* Form Elements */
    .schaden-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .schaden-form-group {
        margin-bottom: 1.5rem;
    }

    .schaden-form-group label {
        display: block;
        font-weight: 600;
        color: #333333;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .schaden-form-group input[type="text"],
    .schaden-form-group input[type="email"],
    .schaden-form-group input[type="tel"],
    .schaden-form-group input[type="date"],
    .schaden-form-group input[type="datetime-local"],
    .schaden-form-group input[type="month"],
    .schaden-form-group input[type="number"],
    .schaden-form-group select,
    .schaden-form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid #e8e8e8;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .schaden-form-group input:focus,
    .schaden-form-group select:focus,
    .schaden-form-group textarea:focus {
        outline: none;
        border-color: #1E73BE;
    }

    .schaden-form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    /* Radio & Checkbox Groups */
    .schaden-radio-group,
    .schaden-checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .schaden-radio-label,
    .schaden-checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        padding: 1rem;
        background: #f8f9fa;
        border: 2px solid #e8e8e8;
        transition: all 0.3s ease;
    }

    .schaden-radio-label:hover,
    .schaden-checkbox-label:hover {
        background: #ffffff;
        border-color: #1E73BE;
    }

    .schaden-radio-label input[type="radio"],
    .schaden-checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .schaden-checkbox-content {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .schaden-checkbox-content strong {
        color: #000000;
        font-weight: 600;
    }

    .schaden-checkbox-content span {
        color: #666666;
        font-size: 0.85rem;
    }

    /* File Upload */
    .schaden-file-upload {
        border: 2px dashed #e8e8e8;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .schaden-file-upload:hover {
        border-color: #1E73BE;
        background: #f8f9fa;
    }

    .schaden-upload-placeholder i {
        font-size: 3rem;
        color: #1E73BE;
        margin-bottom: 1rem;
    }

    .schaden-upload-placeholder p {
        font-size: 1rem;
        color: #333333;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .schaden-upload-placeholder span {
        font-size: 0.85rem;
        color: #999999;
    }

    .schaden-upload-preview {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }

    .schaden-preview-item {
        position: relative;
        aspect-ratio: 1;
        overflow: hidden;
    }

    .schaden-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .schaden-preview-remove {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background: rgba(220, 53, 69, 0.9);
        color: #ffffff;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .schaden-preview-remove:hover {
        background: #dc3545;
    }

    /* Form Navigation */
    .schaden-form-navigation {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #f8f9fa;
    }

    .schaden-btn-prev,
    .schaden-btn-next,
    .schaden-btn-submit {
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .schaden-btn-prev {
        background: transparent;
        color: #666666;
        border: 2px solid #e8e8e8;
    }

    .schaden-btn-prev:hover {
        background: #f8f9fa;
    }

    .schaden-btn-next,
    .schaden-btn-submit {
        background: #1E73BE;
        color: #ffffff;
        border: 2px solid #1E73BE;
        margin-left: auto;
    }

    .schaden-btn-next:hover,
    .schaden-btn-submit:hover {
        background: #155a94;
        border-color: #155a94;
    }

    /* Sidebar */
    .schaden-form-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .schaden-info-card {
        background: #ffffff;
        padding: 2rem;
        border-left: 3px solid #1E73BE;
        border: 1px solid #e8e8e8;
        transition: all 0.3s ease;
    }

    .schaden-info-card:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .schaden-info-card.highlight {
        background: #f8f9fa;
        border-left-width: 3px;
        border-left-color: #1E73BE;
    }

    .schaden-info-icon {
        width: 60px;
        height: 60px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .schaden-info-icon i {
        font-size: 1.5rem;
        color: #ffffff;
    }

    .schaden-info-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.5rem;
    }

    .schaden-info-card p {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    .schaden-phone-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        background: #1E73BE;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }

    .schaden-phone-button:hover {
        background: #155a94;
    }

    /* FAQ Section */
    .schaden-faq-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .schaden-faq-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .schaden-faq-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .schaden-faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .schaden-faq-item {
        background: #ffffff;
        padding: 2rem;
        border-left: 3px solid #1E73BE;
        transition: all 0.3s ease;
    }

    .schaden-faq-item:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .schaden-faq-item h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.75rem;
    }

    .schaden-faq-item p {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive */
    @media screen and (max-width: 1200px) {
        .schaden-form-container {
            grid-template-columns: 1fr;
        }

        .schaden-form-sidebar {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    @media screen and (max-width: 968px) {
        .schaden-page-hero {
            padding: 9rem 0 2rem;
        }

        .schaden-page-hero-title {
            font-size: 2.5rem;
        }

        .schaden-process-steps {
            grid-template-columns: 1fr;
        }

        .schaden-step::after {
            display: none;
        }

        .schaden-form-wrapper {
            padding: 2rem;
        }

        .schaden-form-row {
            grid-template-columns: 1fr;
        }

        .schaden-form-sidebar {
            grid-template-columns: 1fr;
        }

        .schaden-faq-grid {
            grid-template-columns: 1fr;
        }

        .schaden-steps-indicator {
            flex-direction: column;
            gap: 1rem;
        }

        .schaden-steps-indicator::before {
            display: none;
        }
    }

    @media screen and (max-width: 768px) {
        .schaden-page-hero {
            padding: 7rem 0 1.5rem;
        }

        .schaden-page-hero-title {
            font-size: 2rem;
        }

        .schaden-section-title {
            font-size: 1.8rem;
        }

        .schaden-upload-preview {
            grid-template-columns: repeat(2, 1fr);
        }
    }