﻿/* 📁 assets/css/impressum.css */

/* Base Styles */
.impressum-page {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
    min-height: 100vh;
    line-height: 1.6;
}

.impressum-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.impressum-header {
    margin-bottom: 40px;
    text-align: center;
}

    .impressum-header h1 {
        color: #0078D4;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

/* Content Sections */
.impressum-section {
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .impressum-section h2 {
        color: #800000;
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
    }

    .impressum-section p,
    .impressum-section address {
        margin-bottom: 10px;
    }

    .impressum-section a {
        color: #0078D4;
        text-decoration: none;
    }

        .impressum-section a:hover {
            text-decoration: underline;
        }

/* Footer Note */
.impressum-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .impressum-page {
        padding: 60px 0 30px;
    }

    .impressum-header h1 {
        font-size: 2rem;
    }

    .impressum-section {
        padding: 20px;
    }
}
