/* IMPRESSUM SECTION */
.impressum-section {
    padding: 60px 20px;
    background-color: #ffffff; /* White background */
    text-align: center;
    overflow: hidden;
}

.impressum-title {
    font-size: 2.5rem;
    color: #333; /* Black text */
    font-weight: bold;
    margin-bottom: 30px;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Center-align the text */
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
}

.impressum-heading {
    font-size: 1.3rem;
    color: #588157; /* Main green color */
    font-weight: bold;
    margin-top: 20px;
}

.impressum-text {
    font-size: 1rem;
    color: #555; /* Dark grey text */
    margin-bottom: 20px;
}

/* ANIMATIONS */
.animated-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.animated-fade-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .impressum-title {
        font-size: 2rem;
    }

    .impressum-heading {
        font-size: 1.1rem;
    }

    .impressum-text {
        font-size: 0.9rem;
    }
}
