

    .impressum {
        background: var(--about-bg);
        padding: 6rem 5%;
        min-height: 100vh;
    }

    .impressum-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .impressum-header {
        text-align: center;
        margin-bottom: 5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .impressum-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 400;
        color: var(--text-light);
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .impressum-subtitle {
        font-size: 1.125rem;
        font-weight: 300;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .impressum-content {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        margin-bottom: 5rem;
    }

    .impressum-section {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .impressum-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        font-weight: 400;
        color: var(--text-light);
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--primary-color);
        position: relative;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: var(--primary-color);
    }

    .info-card {
        background: var(--card-bg);
        padding: 3rem;
        border: 1px solid rgba(127, 176, 105, 0.1);
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .info-card:hover {
        border-color: rgba(127, 176, 105, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .info-group {
        margin-bottom: 2rem;
    }

    .info-group:last-child {
        margin-bottom: 0;
    }

    .info-group h4 {
        font-family: 'Inter', sans-serif;
        font-size: 1.125rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-weight: 500;
        letter-spacing: 0.25px;
        line-height: 1.3;
    }

    .info-group p {
        font-size: 1rem;
        color: var(--text-light);
        line-height: 1.8;
        margin: 0 0 1rem 0;
        font-weight: 300;
    }

    .info-group p:last-child {
        margin-bottom: 0;
    }

    /* Contact Grid */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        color: var(--primary-color);
        flex-shrink: 0;
        background: rgba(127, 176, 105, 0.1);
        transition: all 0.3s ease;
    }

    .contact-item:hover .contact-icon {
        transform: scale(1.1);
        background: rgba(127, 176, 105, 0.2);
    }

    .contact-label {
        display: block;
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
    }

    .contact-item a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease;
        font-weight: 400;
    }

    .contact-item a:hover {
        color: var(--primary-color);
    }

    /* Legal Text */
    .legal-text h4 {
        font-family: 'Inter', sans-serif;
        font-size: 1.125rem;
        color: var(--text-light);
        margin: 2.5rem 0 1rem 0;
        font-weight: 500;
        letter-spacing: 0.25px;
        line-height: 1.3;
    }

    .legal-text h4:first-child {
        margin-top: 0;
    }

    .legal-text p {
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        text-align: left;
        font-weight: 300;
    }

    /* Privacy Notice */
    .privacy-notice p {
        font-size: 1rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .privacy-link {
        color: var(--primary-color);
        text-decoration: none;
        border-bottom: 1px solid var(--primary-color);
        transition: all 0.3s ease;
        font-weight: 400;
    }

    .privacy-link:hover {
        opacity: 0.8;
        transform: translateX(2px);
    }

    .privacy-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .privacy-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(127, 176, 105, 0.08);
        border: 1px solid rgba(127, 176, 105, 0.25);
        color: var(--text-light);
        font-size: 0.9rem;
        transition: all 0.3s ease;
        font-weight: 400;
    }

    .privacy-item:hover {
        background: rgba(127, 176, 105, 0.12);
        border-color: rgba(127, 176, 105, 0.4);
        transform: translateY(-2px);
    }

    .privacy-item svg {
        color: var(--primary-color);
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    /* Dispute Resolution */
    .dispute-resolution p {
        font-size: 1rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-weight: 300;
    }

    .external-link {
        display: inline-block;
        color: var(--primary-color);
        text-decoration: none;
        padding: 0.75rem 0;
        border-bottom: 2px solid var(--primary-color);
        margin: 1.5rem 0;
        transition: all 0.3s ease;
        font-weight: 400;
        font-size: 1rem;
    }

    .external-link:hover {
        opacity: 0.8;
        transform: translateX(8px);
    }

    /* Navigation */
    .impressum-navigation {
        background: var(--card-bg);
        padding: 3rem;
        text-align: center;
        border: 1px solid #2a2a2a;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .impressum-navigation.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .impressum-navigation h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        font-weight: 400;
    }

    /* Fade-in Animation */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animation delays */
    .impressum-section:nth-child(1) { transition-delay: 0.1s; }
    .impressum-section:nth-child(2) { transition-delay: 0.2s; }
    .impressum-section:nth-child(3) { transition-delay: 0.3s; }
    .impressum-section:nth-child(4) { transition-delay: 0.4s; }
    .impressum-section:nth-child(5) { transition-delay: 0.5s; }
    .impressum-section:nth-child(6) { transition-delay: 0.6s; }

    /* Responsive Design */
    @media (max-width: 768px) {
        .impressum {
            padding: 4rem 1.5rem;
        }

        .info-card {
            padding: 2rem;
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }

        .privacy-highlights {
            grid-template-columns: 1fr;
        }

        .impressum-navigation {
            padding: 2rem;
        }

        .legal-text p {
            text-align: left;
        }
    }
