/* ==============================
   Impressum Section
============================== */
.impressum-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.impressum-text {
    max-width: 600px;
    text-align: center;
    margin-bottom: 0rem;
    padding-left: 0rem;
}

.impressum-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f3ece4;
}

.impressum-text p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #f3ece4;
    line-height: 1.3;
}

/* ==============================
   Responsive Styles
============================== */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }

    .impressum-text {
        width: 100%;
        max-width: 800px;
        margin-bottom: 3rem;
        padding-left: 2rem;
        text-align: right;
    }

    .impressum-text h1 {
        font-size: 0.9rem;
    }

    .impressum-text p {
        font-size: 0.9rem;
    }

}

@media (max-width: 480px) {
    .impressum-text {
        width: 95%;
    }
}


