.warenwirtschaft-intro {
    padding: 20px 0 30px;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.warenwirtschaft-intro .section-title {
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
    display: block;
}

.warenwirtschaft-intro .intro-text {
    max-width: 800px;
    margin: 0 auto 25px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.warenwirtschaft-intro p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.warenwirtschaft-intro p:last-child {
    margin-bottom: 0;
}

.intro-features {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    background: white;
    padding: 15px;
    border-radius: 20px;
}

.intro-feature {
    flex: 1;
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-feature:hover {
    background: white;
}

.intro-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 15px;
}

.intro-feature p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--color-text);
    opacity: 0.9;
}

@media (max-width: 991px) {
    .intro-features {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .intro-feature {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .warenwirtschaft-intro {
        padding: 15px 0 25px;
    }
    
    .warenwirtschaft-intro p {
        font-size: 1rem;
    }
    
    .intro-text {
        padding: 15px;
    }
} 