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

.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: 5px;
    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: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    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: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.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;
}