body {
        font-family: 'Poppins', sans-serif;
        background-color: #000000;
        color: #E0E0E0;
        margin: 0;
        padding: 0;
    }

    .impressum-section {
        min-height: 100vh;
        padding: 8rem 2rem 4rem;
        background: #000000;
        position: relative;
        overflow: hidden;
    }

    .impressum-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(30, 115, 190, 0.15), transparent 70%);
        filter: blur(120px);
        pointer-events: none;
    }

    .impressum-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .page-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .page-label {
        display: inline-block;
        color: #1E73BE;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .page-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-subtitle {
        font-size: 1.1rem;
        color: #B0B0B0;
        line-height: 1.6;
    }

    .impressum-content {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 20px;
        padding: 3rem;
        backdrop-filter: blur(10px);
    }

    .impressum-section-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(30, 115, 190, 0.3);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .impressum-section-title i {
        color: #1E73BE;
        font-size: 1.3rem;
    }

    .impressum-block {
        margin-bottom: 3rem;
    }

    .impressum-block:last-child {
        margin-bottom: 0;
    }

    .impressum-info p {
        margin: 0.5rem 0;
        line-height: 1.8;
        color: #B0B0B0;
    }

    .impressum-info strong {
        color: #E0E0E0;
        font-weight: 600;
    }

    .impressum-info a {
        color: #1E73BE;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .impressum-info a:hover {
        color: #00C2A0;
    }

    .highlight-box {
        background: rgba(30, 115, 190, 0.1);
        border-left: 4px solid #1E73BE;
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 8px;
    }

    .highlight-box p {
        margin: 0.5rem 0;
        color: #E0E0E0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .impressum-section {
            padding: 6rem 1.5rem 3rem;
        }

        .page-title {
            font-size: 2rem;
        }

        .impressum-content {
            padding: 2rem 1.5rem;
        }

        .impressum-section-title {
            font-size: 1.3rem;
        }
    }