.imprint-page {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: 80vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.imprint-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    color: #1a1a1a;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

.imprint-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.imprint-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.imprint-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.imprint-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.imprint-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

.imprint-section a {
    color: #007bff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.imprint-section a:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .imprint-page {
        padding: 40px 0;
    }

    .imprint-content {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .imprint-section h2 {
        font-size: 1.3rem;
    }

    .imprint-section p {
        font-size: 1rem;
    }
}