/* General Header Styling */
.impressum-header {
    background: linear-gradient(to right, #f9f9f9, #e6e6e6); /* Soft gradient for a clean look */
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid #ddd; /* Subtle border for separation */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}
/* Title and Subtitle Styling */
.impressum-header h1 {
    font-size: 28px;
    color: #333; /* Neutral text color */
    margin-bottom: 5px;
    font-weight: bold;
}

.impressum-header p {
    font-size: 16px;
    color: #666; /* Lighter gray for subtitle */
    margin: 0;
}

/* Icon Placeholder Styling */
.impressum-icon {
        /*
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;

    background-image: url('/images/icon_impressum.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    */
    font-size: 48px;
    color: #555; /* Neutral gray */
    margin-bottom: 10px;
}
.main {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
}
@media (max-width: 768px) {
    .impressum-header {
        padding: 20px 10px;
    }
    .impressum-header h1 {
        font-size: 22px;
    }
    .impressum-header p {
        font-size: 14px;
    }
    .impressum-icon {
        width: 50px;
        height: 50px;
    }
}
