* {
    margin: 0;
    padding: 0;
}
.impressum_body {
    background-color: var(--secondary-bg-color);
    width: 100%;
    padding: 2% 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.impressum_body h1 {
    color: var(--accent-color);
    font-size: 3em;
}
.impressum_body h2 {
    color: var(--primary-text-color);
    font-size: 1.35em;
}
.impressum_body h3 {
    color: var(--primary-text-color);
    font-size: 1.1em;
}
.impressum_body p {
    font-size: 1em;
    margin: 0.6em 0 1.6em 0;
    text-align: left;
    line-height: 1.6;
    hyphens: auto;
}
.impressum_body a {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}
.impressum_body a:hover,
.impressum_body a:focus {
    color: #007a7d; /* Slightly darker for better contrast on hover */
    text-decoration: none;
}
.highlight_text {
    color: var(--accent-color);
    font-weight: bold;
}
.email_link {
    word-break: break-all;
}
.impressum_content {
    /* background-color: aquamarine; */
    width: 80%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
}
.impressum_header {
    /* background-color: greenyellow; */
    width: 25%;
    flex-shrink: 0;
}
.impressum_text {
    /* background-color: blue; */
    width: 75%;
}
.impressum_text section {
    margin-bottom: 2rem;
}
.impressum_text h3 {
    margin-bottom: 0.5rem;
}
.impressum_footer_info p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.bewops_logo_img {
    height: 24px;
    width: auto;
    vertical-align: middle;
}
@media(max-width: 1280px) {
    .impressum_body h1 {
        font-size: 2em;
    }
    .impressum_body h2 {
        font-size: 0.9em;
    }
    .impressum_body h3 {
        font-size: 1.1em;
    }
    .impressum_body p {
        font-size: 1em;
    }
    .impressum_content {
        width: 90%;
        gap: 30px;
    }
    .impressum_header {
        width: 30%;
    }
    .impressum_text {
        width: 70%;
    }
}
@media (max-width: 810px) {
    .impressum_body {
        padding: 5% 20px;
    }
    .impressum_content {
        width: 100%;
        max-width: 680px;
        flex-direction: column;
        gap: 20px;
    }
    .impressum_header, .impressum_text {
        width: 100%;
    }
    .impressum_header {
        text-align: left; /* Keep it left aligned for better readability */
    }
    .impressum_body h2 {
        margin-bottom: 1.5rem;
    }
    .impressum_body h3 {
        font-size: 1em;
    }
    .impressum_body p {
        font-size: 0.95em;
    }
}