.startseite-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 0;
    box-shadow: none;
}

.intro-text {
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 2rem;
}

.steps-list,
.benefits-list {
    margin-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-container {
    text-align: left;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}


.producer-div {
    display: block;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 0;
    box-shadow: none;
    margin: 2px auto;
}

.producer-div b {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.producer-div a {
    color: var(--text-secondary);
    text-decoration: none;
}

.producer-div a:hover {
    text-decoration: underline;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.product-images img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: none;
}

.product-images img:hover {
    transform: scale(1.02);
}

.products-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

.products-list > div {
    margin-bottom: 2rem;
}

.products-list b {
    display: block;
    margin-bottom: 0.5rem;
}