html, body {
    font-family: 'Inter', sans-serif;
    background-color: rgba(159, 171, 179, 0.07);
}

input,
textarea,
button,
select,
label,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span {
    font-family: 'Inter', sans-serif;
}
:root {
    --text-2xl: 32px;
    --text-xl: 26px;
    --text-lg: 20px;
    --text-base: 16px;
    --font-weight-medium: 500;
}

/* Grund-Typografie */
h1 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h2 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h4 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h5{
    font-family: 'Inter', sans-serif;
}

.impressum-header h1 {
    margin: 0 0 16px 0;

    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0f1b24;
    text-align: center;
}



.impressum-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
}

/* Header */
.impressum-header {
    text-align: center;
    margin-bottom: 50px;
}



.impressum-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #0f1b24;
}

.impressum-header p {
    font-size: 18px;
    color: #6f7d88;
}

/* Hauptbox */


/* Grid */
.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Blocks */
.impressum-block {
    display: flex;
    gap: 16px;
    padding: 20px;

    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e3e9ee;

    transition: 0.2s;
}

.impressum-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -18px rgba(0,0,0,0.2);
}

/* große Box oben */
.impressum-block.full {
    margin-bottom: 30px;
    margin-top: 24px;
}

/* Icons */
.impressum-block .icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: #e8eef3;
    font-size: 20px;
}

/* Text */
.impressum-block h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #0f1b24;
}

.impressum-block p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5f7482;
}

/* Mobile */
@media (max-width: 768px) {
    .impressum-grid {
        grid-template-columns: 1fr;
    }

    .impressum-box {
        padding: 25px;
    }
}

.impressum-block .icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: #e8eef3;
    font-size: 18px;
}


.icon.blue-2 {
    background: #dde7ef;
    color: #3a5f78;
}



.impressum-block:hover .icon {
    transform: scale(1.08);
}

.impressum-box,
.impressum-block,
.impressum-block p,
.impressum-block h3 {
    max-width: 100%;
    box-sizing: border-box;
}

.impressum-block {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.impressum-block p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .impressum-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .impressum-box {
        width: 100%;
        padding: 20px;
    }

    .impressum-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .impressum-grid {
        grid-template-columns: 1fr;
    }
}