/* Start custom CSS for html, class: .elementor-element-ed5e461 *//* Grundlegendes Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

#scroll-container {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden;
}

/* Markenblock */
.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
}

.brand-block.active {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Styling */
.logo-container img {
    width: 200px;
    margin: 10px auto;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.logo-container img.active {
    opacity: 1;
    transform: translateY(0);
}

/* Text Styling */
.text-container h2, 
.text-container p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out 0.5s;
}

.text-container h2.active,
.text-container p.active {
    opacity: 1;
    transform: translateY(0);
}

.text-container h2 {
    font-size: 24px;
    margin: 10px 0;
}

.text-container p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsives Design */
@media (max-width: 768px) {
    .logo-container img {
        width: 150px;
    }

    .text-container h2 {
        font-size: 20px;
    }

    .text-container p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: 120px;
    }

    .text-container h2 {
        font-size: 18px;
    }

    .text-container p {
        font-size: 14px;
    }
}/* End custom CSS */