/* ==========================================================================
   IMPRESSUM - LEGAL STYLES
   ========================================================================== */

   body {
    background-color: #f1f5f9;
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

/* Navigation */
.legal-nav {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.back-home {
    text-decoration: none;
    color: #2d4073;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.back-home:hover { color: #60a5fa; }

.nav-logo { height: 32px; width: auto; }

/* Main Card */
.legal-content-wrapper {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.legal-card {
    background: white;
    max-width: 850px;
    width: 100%;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.legal-header {
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.legal-header h1 {
    font-size: 32px;
    color: #2d4073;
    margin: 0 0 10px 0;
}

.legal-header p {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Typography Sections */
.legal-section { margin-bottom: 35px; }

.legal-section h2 {
    font-size: 22px;
    color: #2d4073;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 18px;
    color: #1e293b;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
}

.legal-section a {
    color: #2d4073;
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* Footer */
.legal-footer {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    font-size: 14px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .legal-card { padding: 35px 20px; }
    .legal-header h1 { font-size: 26px; }
}